#572921 Color
Color Codes | |
---|---|
Hex Code | #572921 |
RGB Code | rgb(87, 41, 33) |
HSL Code | hsl(9, 45%, 24%) |
#572921 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(87, 41, 33); }
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(9, 45%, 24%); }
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 #572921
RGB Code | Hex Code | Preview |
---|---|---|
rgb(87, 41, 33, 10%) | #5729211a | |
rgb(87, 41, 33, 20%) | #57292133 | |
rgb(87, 41, 33, 40%) | #5729214C | |
rgb(87, 41, 33, 60%) | #57292199 | |
rgb(87, 41, 33, 80%) | #572921CC | |
rgb(87, 41, 33, 100%) | #572921FF |
Saturated and desaturated colors of #572921
HSL Code | Preview |
---|---|
hsl(9, 10%, 24%) | |
hsl(9, 20%, 24%) | |
hsl(9, 40%, 24%) | |
hsl(9, 60%, 24%) | |
hsl(9, 80%, 24%) | |
hsl(9, 100%, 24%) |
#572921 Color Usage In CSS
body { color: #572921; } p { color: rgb(87, 41, 33); } header { border-bottom:1px solid #572921; }