#a0e529 Color
Color Codes | |
---|---|
Hex Code | #a0e529 |
RGB Code | rgb(160, 229, 41) |
HSL Code | hsl(82, 78%, 53%) |
#a0e529 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(160, 229, 41); }
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(82, 78%, 53%); }
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 #a0e529
RGB Code | Hex Code | Preview |
---|---|---|
rgb(160, 229, 41, 10%) | #a0e5291a | |
rgb(160, 229, 41, 20%) | #a0e52933 | |
rgb(160, 229, 41, 40%) | #a0e5294C | |
rgb(160, 229, 41, 60%) | #a0e52999 | |
rgb(160, 229, 41, 80%) | #a0e529CC | |
rgb(160, 229, 41, 100%) | #a0e529FF |
Saturated and desaturated colors of #a0e529
HSL Code | Preview |
---|---|
hsl(82, 10%, 53%) | |
hsl(82, 20%, 53%) | |
hsl(82, 40%, 53%) | |
hsl(82, 60%, 53%) | |
hsl(82, 80%, 53%) | |
hsl(82, 100%, 53%) |
#a0e529 Color Usage In CSS
body { color: #a0e529; } p { color: rgb(160, 229, 41); } header { border-bottom:1px solid #a0e529; }