#8d895c Color
Color Codes | |
---|---|
Hex Code | #8d895c |
RGB Code | rgb(141, 137, 92) |
HSL Code | hsl(55, 21%, 46%) |
#8d895c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(141, 137, 92); }
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(55, 21%, 46%); }
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 #8d895c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(141, 137, 92, 10%) | #8d895c1a | |
rgb(141, 137, 92, 20%) | #8d895c33 | |
rgb(141, 137, 92, 40%) | #8d895c4C | |
rgb(141, 137, 92, 60%) | #8d895c99 | |
rgb(141, 137, 92, 80%) | #8d895cCC | |
rgb(141, 137, 92, 100%) | #8d895cFF |
Saturated and desaturated colors of #8d895c
HSL Code | Preview |
---|---|
hsl(55, 10%, 46%) | |
hsl(55, 20%, 46%) | |
hsl(55, 40%, 46%) | |
hsl(55, 60%, 46%) | |
hsl(55, 80%, 46%) | |
hsl(55, 100%, 46%) |
#8d895c Color Usage In CSS
body { color: #8d895c; } p { color: rgb(141, 137, 92); } header { border-bottom:1px solid #8d895c; }