#87f990 Color
Color Codes | |
---|---|
Hex Code | #87f990 |
RGB Code | rgb(135, 249, 144) |
HSL Code | hsl(125, 90%, 75%) |
#87f990 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(135, 249, 144); }
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(125, 90%, 75%); }
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 #87f990
RGB Code | Hex Code | Preview |
---|---|---|
rgb(135, 249, 144, 10%) | #87f9901a | |
rgb(135, 249, 144, 20%) | #87f99033 | |
rgb(135, 249, 144, 40%) | #87f9904C | |
rgb(135, 249, 144, 60%) | #87f99099 | |
rgb(135, 249, 144, 80%) | #87f990CC | |
rgb(135, 249, 144, 100%) | #87f990FF |
Saturated and desaturated colors of #87f990
HSL Code | Preview |
---|---|
hsl(125, 10%, 75%) | |
hsl(125, 20%, 75%) | |
hsl(125, 40%, 75%) | |
hsl(125, 60%, 75%) | |
hsl(125, 80%, 75%) | |
hsl(125, 100%, 75%) |
#87f990 Color Usage In CSS
body { color: #87f990; } p { color: rgb(135, 249, 144); } header { border-bottom:1px solid #87f990; }