#3cd14e Color
Color Codes | |
---|---|
Hex Code | #3cd14e |
RGB Code | rgb(60, 209, 78) |
HSL Code | hsl(127, 62%, 53%) |
#3cd14e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(60, 209, 78); }
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(127, 62%, 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 #3cd14e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(60, 209, 78, 10%) | #3cd14e1a | |
rgb(60, 209, 78, 20%) | #3cd14e33 | |
rgb(60, 209, 78, 40%) | #3cd14e4C | |
rgb(60, 209, 78, 60%) | #3cd14e99 | |
rgb(60, 209, 78, 80%) | #3cd14eCC | |
rgb(60, 209, 78, 100%) | #3cd14eFF |
Saturated and desaturated colors of #3cd14e
HSL Code | Preview |
---|---|
hsl(127, 10%, 53%) | |
hsl(127, 20%, 53%) | |
hsl(127, 40%, 53%) | |
hsl(127, 60%, 53%) | |
hsl(127, 80%, 53%) | |
hsl(127, 100%, 53%) |
#3cd14e Color Usage In CSS
body { color: #3cd14e; } p { color: rgb(60, 209, 78); } header { border-bottom:1px solid #3cd14e; }