#66c977 Color
Color Codes | |
---|---|
Hex Code | #66c977 |
RGB Code | rgb(102, 201, 119) |
HSL Code | hsl(130, 48%, 59%) |
#66c977 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(102, 201, 119); }
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(130, 48%, 59%); }
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 #66c977
RGB Code | Hex Code | Preview |
---|---|---|
rgb(102, 201, 119, 10%) | #66c9771a | |
rgb(102, 201, 119, 20%) | #66c97733 | |
rgb(102, 201, 119, 40%) | #66c9774C | |
rgb(102, 201, 119, 60%) | #66c97799 | |
rgb(102, 201, 119, 80%) | #66c977CC | |
rgb(102, 201, 119, 100%) | #66c977FF |
Saturated and desaturated colors of #66c977
HSL Code | Preview |
---|---|
hsl(130, 10%, 59%) | |
hsl(130, 20%, 59%) | |
hsl(130, 40%, 59%) | |
hsl(130, 60%, 59%) | |
hsl(130, 80%, 59%) | |
hsl(130, 100%, 59%) |
#66c977 Color Usage In CSS
body { color: #66c977; } p { color: rgb(102, 201, 119); } header { border-bottom:1px solid #66c977; }