#a6f009 Color
Color Codes | |
---|---|
Hex Code | #a6f009 |
RGB Code | rgb(166, 240, 09) |
HSL Code | hsl(79, 93%, 49%) |
#a6f009 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(166, 240, 09); }
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(79, 93%, 49%); }
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 #a6f009
RGB Code | Hex Code | Preview |
---|---|---|
rgb(166, 240, 09, 10%) | #a6f0091a | |
rgb(166, 240, 09, 20%) | #a6f00933 | |
rgb(166, 240, 09, 40%) | #a6f0094C | |
rgb(166, 240, 09, 60%) | #a6f00999 | |
rgb(166, 240, 09, 80%) | #a6f009CC | |
rgb(166, 240, 09, 100%) | #a6f009FF |
Saturated and desaturated colors of #a6f009
HSL Code | Preview |
---|---|
hsl(79, 10%, 49%) | |
hsl(79, 20%, 49%) | |
hsl(79, 40%, 49%) | |
hsl(79, 60%, 49%) | |
hsl(79, 80%, 49%) | |
hsl(79, 100%, 49%) |
#a6f009 Color Usage In CSS
body { color: #a6f009; } p { color: rgb(166, 240, 09); } header { border-bottom:1px solid #a6f009; }