#66c10a Color
Color Codes | |
---|---|
Hex Code | #66c10a |
RGB Code | rgb(102, 193, 10) |
HSL Code | hsl(90, 90%, 40%) |
#66c10a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(102, 193, 10); }
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(90, 90%, 40%); }
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 #66c10a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(102, 193, 10, 10%) | #66c10a1a | |
rgb(102, 193, 10, 20%) | #66c10a33 | |
rgb(102, 193, 10, 40%) | #66c10a4C | |
rgb(102, 193, 10, 60%) | #66c10a99 | |
rgb(102, 193, 10, 80%) | #66c10aCC | |
rgb(102, 193, 10, 100%) | #66c10aFF |
Saturated and desaturated colors of #66c10a
HSL Code | Preview |
---|---|
hsl(90, 10%, 40%) | |
hsl(90, 20%, 40%) | |
hsl(90, 40%, 40%) | |
hsl(90, 60%, 40%) | |
hsl(90, 80%, 40%) | |
hsl(90, 100%, 40%) |
#66c10a Color Usage In CSS
body { color: #66c10a; } p { color: rgb(102, 193, 10); } header { border-bottom:1px solid #66c10a; }