#a9d318 Color
Color Codes | |
---|---|
Hex Code | #a9d318 |
RGB Code | rgb(169, 211, 24) |
HSL Code | hsl(73, 80%, 46%) |
#a9d318 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(169, 211, 24); }
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(73, 80%, 46%); }
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 #a9d318
RGB Code | Hex Code | Preview |
---|---|---|
rgb(169, 211, 24, 10%) | #a9d3181a | |
rgb(169, 211, 24, 20%) | #a9d31833 | |
rgb(169, 211, 24, 40%) | #a9d3184C | |
rgb(169, 211, 24, 60%) | #a9d31899 | |
rgb(169, 211, 24, 80%) | #a9d318CC | |
rgb(169, 211, 24, 100%) | #a9d318FF |
Saturated and desaturated colors of #a9d318
HSL Code | Preview |
---|---|
hsl(73, 10%, 46%) | |
hsl(73, 20%, 46%) | |
hsl(73, 40%, 46%) | |
hsl(73, 60%, 46%) | |
hsl(73, 80%, 46%) | |
hsl(73, 100%, 46%) |
#a9d318 Color Usage In CSS
body { color: #a9d318; } p { color: rgb(169, 211, 24); } header { border-bottom:1px solid #a9d318; }