#3ce62c Color
Color Codes | |
---|---|
Hex Code | #3ce62c |
RGB Code | rgb(60, 230, 44) |
HSL Code | hsl(115, 79%, 54%) |
#3ce62c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(60, 230, 44); }
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(115, 79%, 54%); }
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 #3ce62c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(60, 230, 44, 10%) | #3ce62c1a | |
rgb(60, 230, 44, 20%) | #3ce62c33 | |
rgb(60, 230, 44, 40%) | #3ce62c4C | |
rgb(60, 230, 44, 60%) | #3ce62c99 | |
rgb(60, 230, 44, 80%) | #3ce62cCC | |
rgb(60, 230, 44, 100%) | #3ce62cFF |
Saturated and desaturated colors of #3ce62c
HSL Code | Preview |
---|---|
hsl(115, 10%, 54%) | |
hsl(115, 20%, 54%) | |
hsl(115, 40%, 54%) | |
hsl(115, 60%, 54%) | |
hsl(115, 80%, 54%) | |
hsl(115, 100%, 54%) |
#3ce62c Color Usage In CSS
body { color: #3ce62c; } p { color: rgb(60, 230, 44); } header { border-bottom:1px solid #3ce62c; }