#a2f1ea Color
Color Codes | |
---|---|
Hex Code | #a2f1ea |
RGB Code | rgb(162, 241, 234) |
HSL Code | hsl(175, 74%, 79%) |
#a2f1ea Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(162, 241, 234); }
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(175, 74%, 79%); }
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 #a2f1ea
RGB Code | Hex Code | Preview |
---|---|---|
rgb(162, 241, 234, 10%) | #a2f1ea1a | |
rgb(162, 241, 234, 20%) | #a2f1ea33 | |
rgb(162, 241, 234, 40%) | #a2f1ea4C | |
rgb(162, 241, 234, 60%) | #a2f1ea99 | |
rgb(162, 241, 234, 80%) | #a2f1eaCC | |
rgb(162, 241, 234, 100%) | #a2f1eaFF |
Saturated and desaturated colors of #a2f1ea
HSL Code | Preview |
---|---|
hsl(175, 10%, 79%) | |
hsl(175, 20%, 79%) | |
hsl(175, 40%, 79%) | |
hsl(175, 60%, 79%) | |
hsl(175, 80%, 79%) | |
hsl(175, 100%, 79%) |
#a2f1ea Color Usage In CSS
body { color: #a2f1ea; } p { color: rgb(162, 241, 234); } header { border-bottom:1px solid #a2f1ea; }