#a4a2ae Color
Color Codes | |
---|---|
Hex Code | #a4a2ae |
RGB Code | rgb(164, 162, 174) |
HSL Code | hsl(250, 7%, 66%) |
#a4a2ae Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(164, 162, 174); }
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(250, 7%, 66%); }
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 #a4a2ae
RGB Code | Hex Code | Preview |
---|---|---|
rgb(164, 162, 174, 10%) | #a4a2ae1a | |
rgb(164, 162, 174, 20%) | #a4a2ae33 | |
rgb(164, 162, 174, 40%) | #a4a2ae4C | |
rgb(164, 162, 174, 60%) | #a4a2ae99 | |
rgb(164, 162, 174, 80%) | #a4a2aeCC | |
rgb(164, 162, 174, 100%) | #a4a2aeFF |
Saturated and desaturated colors of #a4a2ae
HSL Code | Preview |
---|---|
hsl(250, 10%, 66%) | |
hsl(250, 20%, 66%) | |
hsl(250, 40%, 66%) | |
hsl(250, 60%, 66%) | |
hsl(250, 80%, 66%) | |
hsl(250, 100%, 66%) |
#a4a2ae Color Usage In CSS
body { color: #a4a2ae; } p { color: rgb(164, 162, 174); } header { border-bottom:1px solid #a4a2ae; }