#8e6926 Color
Color Codes | |
---|---|
Hex Code | #8e6926 |
RGB Code | rgb(142, 105, 38) |
HSL Code | hsl(39, 58%, 35%) |
#8e6926 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(142, 105, 38); }
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, 58%, 35%); }
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 #8e6926
RGB Code | Hex Code | Preview |
---|---|---|
rgb(142, 105, 38, 10%) | #8e69261a | |
rgb(142, 105, 38, 20%) | #8e692633 | |
rgb(142, 105, 38, 40%) | #8e69264C | |
rgb(142, 105, 38, 60%) | #8e692699 | |
rgb(142, 105, 38, 80%) | #8e6926CC | |
rgb(142, 105, 38, 100%) | #8e6926FF |
Saturated and desaturated colors of #8e6926
HSL Code | Preview |
---|---|
hsl(39, 10%, 35%) | |
hsl(39, 20%, 35%) | |
hsl(39, 40%, 35%) | |
hsl(39, 60%, 35%) | |
hsl(39, 80%, 35%) | |
hsl(39, 100%, 35%) |
#8e6926 Color Usage In CSS
body { color: #8e6926; } p { color: rgb(142, 105, 38); } header { border-bottom:1px solid #8e6926; }