#8b4708 Color
Color Codes | |
---|---|
Hex Code | #8b4708 |
RGB Code | rgb(139, 71, 08) |
HSL Code | hsl(29, 89%, 29%) |
#8b4708 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(139, 71, 08); }
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(29, 89%, 29%); }
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 #8b4708
RGB Code | Hex Code | Preview |
---|---|---|
rgb(139, 71, 08, 10%) | #8b47081a | |
rgb(139, 71, 08, 20%) | #8b470833 | |
rgb(139, 71, 08, 40%) | #8b47084C | |
rgb(139, 71, 08, 60%) | #8b470899 | |
rgb(139, 71, 08, 80%) | #8b4708CC | |
rgb(139, 71, 08, 100%) | #8b4708FF |
Saturated and desaturated colors of #8b4708
HSL Code | Preview |
---|---|
hsl(29, 10%, 29%) | |
hsl(29, 20%, 29%) | |
hsl(29, 40%, 29%) | |
hsl(29, 60%, 29%) | |
hsl(29, 80%, 29%) | |
hsl(29, 100%, 29%) |
#8b4708 Color Usage In CSS
body { color: #8b4708; } p { color: rgb(139, 71, 08); } header { border-bottom:1px solid #8b4708; }