#aac8a9 Color
Color Codes | |
---|---|
Hex Code | #aac8a9 |
RGB Code | rgb(170, 200, 169) |
HSL Code | hsl(118, 22%, 72%) |
#aac8a9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(170, 200, 169); }
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(118, 22%, 72%); }
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 #aac8a9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(170, 200, 169, 10%) | #aac8a91a | |
rgb(170, 200, 169, 20%) | #aac8a933 | |
rgb(170, 200, 169, 40%) | #aac8a94C | |
rgb(170, 200, 169, 60%) | #aac8a999 | |
rgb(170, 200, 169, 80%) | #aac8a9CC | |
rgb(170, 200, 169, 100%) | #aac8a9FF |
Saturated and desaturated colors of #aac8a9
HSL Code | Preview |
---|---|
hsl(118, 10%, 72%) | |
hsl(118, 20%, 72%) | |
hsl(118, 40%, 72%) | |
hsl(118, 60%, 72%) | |
hsl(118, 80%, 72%) | |
hsl(118, 100%, 72%) |
#aac8a9 Color Usage In CSS
body { color: #aac8a9; } p { color: rgb(170, 200, 169); } header { border-bottom:1px solid #aac8a9; }