#a0e999 Color
Color Codes | |
---|---|
Hex Code | #a0e999 |
RGB Code | rgb(160, 233, 153) |
HSL Code | hsl(115, 65%, 76%) |
#a0e999 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(160, 233, 153); }
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(115, 65%, 76%); }
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 #a0e999
RGB Code | Hex Code | Preview |
---|---|---|
rgb(160, 233, 153, 10%) | #a0e9991a | |
rgb(160, 233, 153, 20%) | #a0e99933 | |
rgb(160, 233, 153, 40%) | #a0e9994C | |
rgb(160, 233, 153, 60%) | #a0e99999 | |
rgb(160, 233, 153, 80%) | #a0e999CC | |
rgb(160, 233, 153, 100%) | #a0e999FF |
Saturated and desaturated colors of #a0e999
HSL Code | Preview |
---|---|
hsl(115, 10%, 76%) | |
hsl(115, 20%, 76%) | |
hsl(115, 40%, 76%) | |
hsl(115, 60%, 76%) | |
hsl(115, 80%, 76%) | |
hsl(115, 100%, 76%) |
#a0e999 Color Usage In CSS
body { color: #a0e999; } p { color: rgb(160, 233, 153); } header { border-bottom:1px solid #a0e999; }