#2ce33e Color
Color Codes | |
---|---|
Hex Code | #2ce33e |
RGB Code | rgb(44, 227, 62) |
HSL Code | hsl(126, 77%, 53%) |
#2ce33e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(44, 227, 62); }
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(126, 77%, 53%); }
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 #2ce33e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(44, 227, 62, 10%) | #2ce33e1a | |
rgb(44, 227, 62, 20%) | #2ce33e33 | |
rgb(44, 227, 62, 40%) | #2ce33e4C | |
rgb(44, 227, 62, 60%) | #2ce33e99 | |
rgb(44, 227, 62, 80%) | #2ce33eCC | |
rgb(44, 227, 62, 100%) | #2ce33eFF |
Saturated and desaturated colors of #2ce33e
HSL Code | Preview |
---|---|
hsl(126, 10%, 53%) | |
hsl(126, 20%, 53%) | |
hsl(126, 40%, 53%) | |
hsl(126, 60%, 53%) | |
hsl(126, 80%, 53%) | |
hsl(126, 100%, 53%) |
#2ce33e Color Usage In CSS
body { color: #2ce33e; } p { color: rgb(44, 227, 62); } header { border-bottom:1px solid #2ce33e; }