#876d69 Color
Color Codes | |
---|---|
Hex Code | #876d69 |
RGB Code | rgb(135, 109, 105) |
HSL Code | hsl(8, 13%, 47%) |
#876d69 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(135, 109, 105); }
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(8, 13%, 47%); }
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 #876d69
RGB Code | Hex Code | Preview |
---|---|---|
rgb(135, 109, 105, 10%) | #876d691a | |
rgb(135, 109, 105, 20%) | #876d6933 | |
rgb(135, 109, 105, 40%) | #876d694C | |
rgb(135, 109, 105, 60%) | #876d6999 | |
rgb(135, 109, 105, 80%) | #876d69CC | |
rgb(135, 109, 105, 100%) | #876d69FF |
Saturated and desaturated colors of #876d69
HSL Code | Preview |
---|---|
hsl(8, 10%, 47%) | |
hsl(8, 20%, 47%) | |
hsl(8, 40%, 47%) | |
hsl(8, 60%, 47%) | |
hsl(8, 80%, 47%) | |
hsl(8, 100%, 47%) |
#876d69 Color Usage In CSS
body { color: #876d69; } p { color: rgb(135, 109, 105); } header { border-bottom:1px solid #876d69; }