#888600 Color
Color Codes | |
---|---|
Hex Code | #888600 |
RGB Code | rgb(136, 134, 00) |
HSL Code | hsl(59, 100%, 27%) |
#888600 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(136, 134, 00); }
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(59, 100%, 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 #888600
RGB Code | Hex Code | Preview |
---|---|---|
rgb(136, 134, 00, 10%) | #8886001a | |
rgb(136, 134, 00, 20%) | #88860033 | |
rgb(136, 134, 00, 40%) | #8886004C | |
rgb(136, 134, 00, 60%) | #88860099 | |
rgb(136, 134, 00, 80%) | #888600CC | |
rgb(136, 134, 00, 100%) | #888600FF |
Saturated and desaturated colors of #888600
HSL Code | Preview |
---|---|
hsl(59, 10%, 27%) | |
hsl(59, 20%, 27%) | |
hsl(59, 40%, 27%) | |
hsl(59, 60%, 27%) | |
hsl(59, 80%, 27%) | |
hsl(59, 100%, 27%) |
#888600 Color Usage In CSS
body { color: #888600; } p { color: rgb(136, 134, 00); } header { border-bottom:1px solid #888600; }