#85ef23 Color
Color Codes | |
---|---|
Hex Code | #85ef23 |
RGB Code | rgb(133, 239, 35) |
HSL Code | hsl(91, 86%, 54%) |
#85ef23 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(133, 239, 35); }
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(91, 86%, 54%); }
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 #85ef23
RGB Code | Hex Code | Preview |
---|---|---|
rgb(133, 239, 35, 10%) | #85ef231a | |
rgb(133, 239, 35, 20%) | #85ef2333 | |
rgb(133, 239, 35, 40%) | #85ef234C | |
rgb(133, 239, 35, 60%) | #85ef2399 | |
rgb(133, 239, 35, 80%) | #85ef23CC | |
rgb(133, 239, 35, 100%) | #85ef23FF |
Saturated and desaturated colors of #85ef23
HSL Code | Preview |
---|---|
hsl(91, 10%, 54%) | |
hsl(91, 20%, 54%) | |
hsl(91, 40%, 54%) | |
hsl(91, 60%, 54%) | |
hsl(91, 80%, 54%) | |
hsl(91, 100%, 54%) |
#85ef23 Color Usage In CSS
body { color: #85ef23; } p { color: rgb(133, 239, 35); } header { border-bottom:1px solid #85ef23; }