#86e24b Color
Color Codes | |
---|---|
Hex Code | #86e24b |
RGB Code | rgb(134, 226, 75) |
HSL Code | hsl(97, 72%, 59%) |
#86e24b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(134, 226, 75); }
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(97, 72%, 59%); }
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 #86e24b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(134, 226, 75, 10%) | #86e24b1a | |
rgb(134, 226, 75, 20%) | #86e24b33 | |
rgb(134, 226, 75, 40%) | #86e24b4C | |
rgb(134, 226, 75, 60%) | #86e24b99 | |
rgb(134, 226, 75, 80%) | #86e24bCC | |
rgb(134, 226, 75, 100%) | #86e24bFF |
Saturated and desaturated colors of #86e24b
HSL Code | Preview |
---|---|
hsl(97, 10%, 59%) | |
hsl(97, 20%, 59%) | |
hsl(97, 40%, 59%) | |
hsl(97, 60%, 59%) | |
hsl(97, 80%, 59%) | |
hsl(97, 100%, 59%) |
#86e24b Color Usage In CSS
body { color: #86e24b; } p { color: rgb(134, 226, 75); } header { border-bottom:1px solid #86e24b; }