#86a61b Color
Color Codes | |
---|---|
Hex Code | #86a61b |
RGB Code | rgb(134, 166, 27) |
HSL Code | hsl(74, 72%, 38%) |
#86a61b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(134, 166, 27); }
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(74, 72%, 38%); }
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 #86a61b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(134, 166, 27, 10%) | #86a61b1a | |
rgb(134, 166, 27, 20%) | #86a61b33 | |
rgb(134, 166, 27, 40%) | #86a61b4C | |
rgb(134, 166, 27, 60%) | #86a61b99 | |
rgb(134, 166, 27, 80%) | #86a61bCC | |
rgb(134, 166, 27, 100%) | #86a61bFF |
Saturated and desaturated colors of #86a61b
HSL Code | Preview |
---|---|
hsl(74, 10%, 38%) | |
hsl(74, 20%, 38%) | |
hsl(74, 40%, 38%) | |
hsl(74, 60%, 38%) | |
hsl(74, 80%, 38%) | |
hsl(74, 100%, 38%) |
#86a61b Color Usage In CSS
body { color: #86a61b; } p { color: rgb(134, 166, 27); } header { border-bottom:1px solid #86a61b; }