#87621e Color
Color Codes | |
---|---|
Hex Code | #87621e |
RGB Code | rgb(135, 98, 30) |
HSL Code | hsl(39, 64%, 32%) |
#87621e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(135, 98, 30); }
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(39, 64%, 32%); }
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 #87621e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(135, 98, 30, 10%) | #87621e1a | |
rgb(135, 98, 30, 20%) | #87621e33 | |
rgb(135, 98, 30, 40%) | #87621e4C | |
rgb(135, 98, 30, 60%) | #87621e99 | |
rgb(135, 98, 30, 80%) | #87621eCC | |
rgb(135, 98, 30, 100%) | #87621eFF |
Saturated and desaturated colors of #87621e
HSL Code | Preview |
---|---|
hsl(39, 10%, 32%) | |
hsl(39, 20%, 32%) | |
hsl(39, 40%, 32%) | |
hsl(39, 60%, 32%) | |
hsl(39, 80%, 32%) | |
hsl(39, 100%, 32%) |
#87621e Color Usage In CSS
body { color: #87621e; } p { color: rgb(135, 98, 30); } header { border-bottom:1px solid #87621e; }