#86a633 Color
Color Codes | |
---|---|
Hex Code | #86a633 |
RGB Code | rgb(134, 166, 51) |
HSL Code | hsl(77, 53%, 43%) |
#86a633 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(134, 166, 51); }
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(77, 53%, 43%); }
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 #86a633
RGB Code | Hex Code | Preview |
---|---|---|
rgb(134, 166, 51, 10%) | #86a6331a | |
rgb(134, 166, 51, 20%) | #86a63333 | |
rgb(134, 166, 51, 40%) | #86a6334C | |
rgb(134, 166, 51, 60%) | #86a63399 | |
rgb(134, 166, 51, 80%) | #86a633CC | |
rgb(134, 166, 51, 100%) | #86a633FF |
Saturated and desaturated colors of #86a633
HSL Code | Preview |
---|---|
hsl(77, 10%, 43%) | |
hsl(77, 20%, 43%) | |
hsl(77, 40%, 43%) | |
hsl(77, 60%, 43%) | |
hsl(77, 80%, 43%) | |
hsl(77, 100%, 43%) |
#86a633 Color Usage In CSS
body { color: #86a633; } p { color: rgb(134, 166, 51); } header { border-bottom:1px solid #86a633; }