#85c00b Color
Color Codes | |
---|---|
Hex Code | #85c00b |
RGB Code | rgb(133, 192, 11) |
HSL Code | hsl(80, 89%, 40%) |
#85c00b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(133, 192, 11); }
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(80, 89%, 40%); }
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 #85c00b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(133, 192, 11, 10%) | #85c00b1a | |
rgb(133, 192, 11, 20%) | #85c00b33 | |
rgb(133, 192, 11, 40%) | #85c00b4C | |
rgb(133, 192, 11, 60%) | #85c00b99 | |
rgb(133, 192, 11, 80%) | #85c00bCC | |
rgb(133, 192, 11, 100%) | #85c00bFF |
Saturated and desaturated colors of #85c00b
HSL Code | Preview |
---|---|
hsl(80, 10%, 40%) | |
hsl(80, 20%, 40%) | |
hsl(80, 40%, 40%) | |
hsl(80, 60%, 40%) | |
hsl(80, 80%, 40%) | |
hsl(80, 100%, 40%) |
#85c00b Color Usage In CSS
body { color: #85c00b; } p { color: rgb(133, 192, 11); } header { border-bottom:1px solid #85c00b; }