#aca7d1 Color
Color Codes | |
---|---|
Hex Code | #aca7d1 |
RGB Code | rgb(172, 167, 209) |
HSL Code | hsl(247, 31%, 74%) |
#aca7d1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(172, 167, 209); }
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(247, 31%, 74%); }
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 #aca7d1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(172, 167, 209, 10%) | #aca7d11a | |
rgb(172, 167, 209, 20%) | #aca7d133 | |
rgb(172, 167, 209, 40%) | #aca7d14C | |
rgb(172, 167, 209, 60%) | #aca7d199 | |
rgb(172, 167, 209, 80%) | #aca7d1CC | |
rgb(172, 167, 209, 100%) | #aca7d1FF |
Saturated and desaturated colors of #aca7d1
HSL Code | Preview |
---|---|
hsl(247, 10%, 74%) | |
hsl(247, 20%, 74%) | |
hsl(247, 40%, 74%) | |
hsl(247, 60%, 74%) | |
hsl(247, 80%, 74%) | |
hsl(247, 100%, 74%) |
#aca7d1 Color Usage In CSS
body { color: #aca7d1; } p { color: rgb(172, 167, 209); } header { border-bottom:1px solid #aca7d1; }