#3cc87c Color
Color Codes | |
---|---|
Hex Code | #3cc87c |
RGB Code | rgb(60, 200, 124) |
HSL Code | hsl(147, 56%, 51%) |
#3cc87c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(60, 200, 124); }
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(147, 56%, 51%); }
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 #3cc87c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(60, 200, 124, 10%) | #3cc87c1a | |
rgb(60, 200, 124, 20%) | #3cc87c33 | |
rgb(60, 200, 124, 40%) | #3cc87c4C | |
rgb(60, 200, 124, 60%) | #3cc87c99 | |
rgb(60, 200, 124, 80%) | #3cc87cCC | |
rgb(60, 200, 124, 100%) | #3cc87cFF |
Saturated and desaturated colors of #3cc87c
HSL Code | Preview |
---|---|
hsl(147, 10%, 51%) | |
hsl(147, 20%, 51%) | |
hsl(147, 40%, 51%) | |
hsl(147, 60%, 51%) | |
hsl(147, 80%, 51%) | |
hsl(147, 100%, 51%) |
#3cc87c Color Usage In CSS
body { color: #3cc87c; } p { color: rgb(60, 200, 124); } header { border-bottom:1px solid #3cc87c; }