#5c3f7b Color
Color Codes | |
---|---|
Hex Code | #5c3f7b |
RGB Code | rgb(92, 63, 123) |
HSL Code | hsl(269, 32%, 36%) |
#5c3f7b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(92, 63, 123); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(269, 32%, 36%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #5c3f7b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(92, 63, 123, 10%) | #5c3f7b1a | |
rgb(92, 63, 123, 20%) | #5c3f7b33 | |
rgb(92, 63, 123, 40%) | #5c3f7b4C | |
rgb(92, 63, 123, 60%) | #5c3f7b99 | |
rgb(92, 63, 123, 80%) | #5c3f7bCC | |
rgb(92, 63, 123, 100%) | #5c3f7bFF |
Saturated and desaturated colors of #5c3f7b
HSL Code | Preview |
---|---|
hsl(269, 10%, 36%) | |
hsl(269, 20%, 36%) | |
hsl(269, 40%, 36%) | |
hsl(269, 60%, 36%) | |
hsl(269, 80%, 36%) | |
hsl(269, 100%, 36%) |
#5c3f7b Color Usage In CSS
body { color: #5c3f7b; } p { color: rgb(92, 63, 123); } header { border-bottom:1px solid #5c3f7b; }