#21e63f Color
Color Codes | |
---|---|
Hex Code | #21e63f |
RGB Code | rgb(33, 230, 63) |
HSL Code | hsl(129, 80%, 52%) |
#21e63f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(33, 230, 63); }
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(129, 80%, 52%); }
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 #21e63f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(33, 230, 63, 10%) | #21e63f1a | |
rgb(33, 230, 63, 20%) | #21e63f33 | |
rgb(33, 230, 63, 40%) | #21e63f4C | |
rgb(33, 230, 63, 60%) | #21e63f99 | |
rgb(33, 230, 63, 80%) | #21e63fCC | |
rgb(33, 230, 63, 100%) | #21e63fFF |
Saturated and desaturated colors of #21e63f
HSL Code | Preview |
---|---|
hsl(129, 10%, 52%) | |
hsl(129, 20%, 52%) | |
hsl(129, 40%, 52%) | |
hsl(129, 60%, 52%) | |
hsl(129, 80%, 52%) | |
hsl(129, 100%, 52%) |
#21e63f Color Usage In CSS
body { color: #21e63f; } p { color: rgb(33, 230, 63); } header { border-bottom:1px solid #21e63f; }