#854924 Color
Color Codes | |
---|---|
Hex Code | #854924 |
RGB Code | rgb(133, 73, 36) |
HSL Code | hsl(23, 57%, 33%) |
#854924 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(133, 73, 36); }
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(23, 57%, 33%); }
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 #854924
RGB Code | Hex Code | Preview |
---|---|---|
rgb(133, 73, 36, 10%) | #8549241a | |
rgb(133, 73, 36, 20%) | #85492433 | |
rgb(133, 73, 36, 40%) | #8549244C | |
rgb(133, 73, 36, 60%) | #85492499 | |
rgb(133, 73, 36, 80%) | #854924CC | |
rgb(133, 73, 36, 100%) | #854924FF |
Saturated and desaturated colors of #854924
HSL Code | Preview |
---|---|
hsl(23, 10%, 33%) | |
hsl(23, 20%, 33%) | |
hsl(23, 40%, 33%) | |
hsl(23, 60%, 33%) | |
hsl(23, 80%, 33%) | |
hsl(23, 100%, 33%) |
#854924 Color Usage In CSS
body { color: #854924; } p { color: rgb(133, 73, 36); } header { border-bottom:1px solid #854924; }