#02fa81 Color
Color Codes | |
---|---|
Hex Code | #02fa81 |
RGB Code | rgb(02, 250, 129) |
HSL Code | hsl(151, 98%, 49%) |
#02fa81 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(02, 250, 129); }
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(151, 98%, 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 #02fa81
RGB Code | Hex Code | Preview |
---|---|---|
rgb(02, 250, 129, 10%) | #02fa811a | |
rgb(02, 250, 129, 20%) | #02fa8133 | |
rgb(02, 250, 129, 40%) | #02fa814C | |
rgb(02, 250, 129, 60%) | #02fa8199 | |
rgb(02, 250, 129, 80%) | #02fa81CC | |
rgb(02, 250, 129, 100%) | #02fa81FF |
Saturated and desaturated colors of #02fa81
HSL Code | Preview |
---|---|
hsl(151, 10%, 49%) | |
hsl(151, 20%, 49%) | |
hsl(151, 40%, 49%) | |
hsl(151, 60%, 49%) | |
hsl(151, 80%, 49%) | |
hsl(151, 100%, 49%) |
#02fa81 Color Usage In CSS
body { color: #02fa81; } p { color: rgb(02, 250, 129); } header { border-bottom:1px solid #02fa81; }