#85e315 Color
Color Codes | |
---|---|
Hex Code | #85e315 |
RGB Code | rgb(133, 227, 21) |
HSL Code | hsl(87, 83%, 49%) |
#85e315 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(133, 227, 21); }
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(87, 83%, 49%); }
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 #85e315
RGB Code | Hex Code | Preview |
---|---|---|
rgb(133, 227, 21, 10%) | #85e3151a | |
rgb(133, 227, 21, 20%) | #85e31533 | |
rgb(133, 227, 21, 40%) | #85e3154C | |
rgb(133, 227, 21, 60%) | #85e31599 | |
rgb(133, 227, 21, 80%) | #85e315CC | |
rgb(133, 227, 21, 100%) | #85e315FF |
Saturated and desaturated colors of #85e315
HSL Code | Preview |
---|---|
hsl(87, 10%, 49%) | |
hsl(87, 20%, 49%) | |
hsl(87, 40%, 49%) | |
hsl(87, 60%, 49%) | |
hsl(87, 80%, 49%) | |
hsl(87, 100%, 49%) |
#85e315 Color Usage In CSS
body { color: #85e315; } p { color: rgb(133, 227, 21); } header { border-bottom:1px solid #85e315; }