#a2a06f Color
Color Codes | |
---|---|
Hex Code | #a2a06f |
RGB Code | rgb(162, 160, 111) |
HSL Code | hsl(58, 22%, 54%) |
#a2a06f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(162, 160, 111); }
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(58, 22%, 54%); }
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 #a2a06f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(162, 160, 111, 10%) | #a2a06f1a | |
rgb(162, 160, 111, 20%) | #a2a06f33 | |
rgb(162, 160, 111, 40%) | #a2a06f4C | |
rgb(162, 160, 111, 60%) | #a2a06f99 | |
rgb(162, 160, 111, 80%) | #a2a06fCC | |
rgb(162, 160, 111, 100%) | #a2a06fFF |
Saturated and desaturated colors of #a2a06f
HSL Code | Preview |
---|---|
hsl(58, 10%, 54%) | |
hsl(58, 20%, 54%) | |
hsl(58, 40%, 54%) | |
hsl(58, 60%, 54%) | |
hsl(58, 80%, 54%) | |
hsl(58, 100%, 54%) |
#a2a06f Color Usage In CSS
body { color: #a2a06f; } p { color: rgb(162, 160, 111); } header { border-bottom:1px solid #a2a06f; }