#5a2f34 Color
Color Codes | |
---|---|
Hex Code | #5a2f34 |
RGB Code | rgb(90, 47, 52) |
HSL Code | hsl(353, 31%, 27%) |
#5a2f34 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(90, 47, 52); }
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(353, 31%, 27%); }
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 #5a2f34
RGB Code | Hex Code | Preview |
---|---|---|
rgb(90, 47, 52, 10%) | #5a2f341a | |
rgb(90, 47, 52, 20%) | #5a2f3433 | |
rgb(90, 47, 52, 40%) | #5a2f344C | |
rgb(90, 47, 52, 60%) | #5a2f3499 | |
rgb(90, 47, 52, 80%) | #5a2f34CC | |
rgb(90, 47, 52, 100%) | #5a2f34FF |
Saturated and desaturated colors of #5a2f34
HSL Code | Preview |
---|---|
hsl(353, 10%, 27%) | |
hsl(353, 20%, 27%) | |
hsl(353, 40%, 27%) | |
hsl(353, 60%, 27%) | |
hsl(353, 80%, 27%) | |
hsl(353, 100%, 27%) |
#5a2f34 Color Usage In CSS
body { color: #5a2f34; } p { color: rgb(90, 47, 52); } header { border-bottom:1px solid #5a2f34; }