#85af14 Color
Color Codes | |
---|---|
Hex Code | #85af14 |
RGB Code | rgb(133, 175, 20) |
HSL Code | hsl(76, 79%, 38%) |
#85af14 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(133, 175, 20); }
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(76, 79%, 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 #85af14
RGB Code | Hex Code | Preview |
---|---|---|
rgb(133, 175, 20, 10%) | #85af141a | |
rgb(133, 175, 20, 20%) | #85af1433 | |
rgb(133, 175, 20, 40%) | #85af144C | |
rgb(133, 175, 20, 60%) | #85af1499 | |
rgb(133, 175, 20, 80%) | #85af14CC | |
rgb(133, 175, 20, 100%) | #85af14FF |
Saturated and desaturated colors of #85af14
HSL Code | Preview |
---|---|
hsl(76, 10%, 38%) | |
hsl(76, 20%, 38%) | |
hsl(76, 40%, 38%) | |
hsl(76, 60%, 38%) | |
hsl(76, 80%, 38%) | |
hsl(76, 100%, 38%) |
#85af14 Color Usage In CSS
body { color: #85af14; } p { color: rgb(133, 175, 20); } header { border-bottom:1px solid #85af14; }