#847408 Color
Color Codes | |
---|---|
Hex Code | #847408 |
RGB Code | rgb(132, 116, 08) |
HSL Code | hsl(52, 89%, 27%) |
#847408 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 116, 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(52, 89%, 27%); }
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 #847408
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 116, 08, 10%) | #8474081a | |
rgb(132, 116, 08, 20%) | #84740833 | |
rgb(132, 116, 08, 40%) | #8474084C | |
rgb(132, 116, 08, 60%) | #84740899 | |
rgb(132, 116, 08, 80%) | #847408CC | |
rgb(132, 116, 08, 100%) | #847408FF |
Saturated and desaturated colors of #847408
HSL Code | Preview |
---|---|
hsl(52, 10%, 27%) | |
hsl(52, 20%, 27%) | |
hsl(52, 40%, 27%) | |
hsl(52, 60%, 27%) | |
hsl(52, 80%, 27%) | |
hsl(52, 100%, 27%) |
#847408 Color Usage In CSS
body { color: #847408; } p { color: rgb(132, 116, 08); } header { border-bottom:1px solid #847408; }