#aea988 Color
Color Codes | |
---|---|
Hex Code | #aea988 |
RGB Code | rgb(174, 169, 136) |
HSL Code | hsl(52, 19%, 61%) |
#aea988 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(174, 169, 136); }
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(52, 19%, 61%); }
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 #aea988
RGB Code | Hex Code | Preview |
---|---|---|
rgb(174, 169, 136, 10%) | #aea9881a | |
rgb(174, 169, 136, 20%) | #aea98833 | |
rgb(174, 169, 136, 40%) | #aea9884C | |
rgb(174, 169, 136, 60%) | #aea98899 | |
rgb(174, 169, 136, 80%) | #aea988CC | |
rgb(174, 169, 136, 100%) | #aea988FF |
Saturated and desaturated colors of #aea988
HSL Code | Preview |
---|---|
hsl(52, 10%, 61%) | |
hsl(52, 20%, 61%) | |
hsl(52, 40%, 61%) | |
hsl(52, 60%, 61%) | |
hsl(52, 80%, 61%) | |
hsl(52, 100%, 61%) |
#aea988 Color Usage In CSS
body { color: #aea988; } p { color: rgb(174, 169, 136); } header { border-bottom:1px solid #aea988; }