#66c37c Color
Color Codes | |
---|---|
Hex Code | #66c37c |
RGB Code | rgb(102, 195, 124) |
HSL Code | hsl(134, 44%, 58%) |
#66c37c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(102, 195, 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(134, 44%, 58%); }
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 #66c37c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(102, 195, 124, 10%) | #66c37c1a | |
rgb(102, 195, 124, 20%) | #66c37c33 | |
rgb(102, 195, 124, 40%) | #66c37c4C | |
rgb(102, 195, 124, 60%) | #66c37c99 | |
rgb(102, 195, 124, 80%) | #66c37cCC | |
rgb(102, 195, 124, 100%) | #66c37cFF |
Saturated and desaturated colors of #66c37c
HSL Code | Preview |
---|---|
hsl(134, 10%, 58%) | |
hsl(134, 20%, 58%) | |
hsl(134, 40%, 58%) | |
hsl(134, 60%, 58%) | |
hsl(134, 80%, 58%) | |
hsl(134, 100%, 58%) |
#66c37c Color Usage In CSS
body { color: #66c37c; } p { color: rgb(102, 195, 124); } header { border-bottom:1px solid #66c37c; }