#a79e76 Color
Color Codes | |
---|---|
Hex Code | #a79e76 |
RGB Code | rgb(167, 158, 118) |
HSL Code | hsl(49, 22%, 56%) |
#a79e76 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(167, 158, 118); }
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(49, 22%, 56%); }
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 #a79e76
RGB Code | Hex Code | Preview |
---|---|---|
rgb(167, 158, 118, 10%) | #a79e761a | |
rgb(167, 158, 118, 20%) | #a79e7633 | |
rgb(167, 158, 118, 40%) | #a79e764C | |
rgb(167, 158, 118, 60%) | #a79e7699 | |
rgb(167, 158, 118, 80%) | #a79e76CC | |
rgb(167, 158, 118, 100%) | #a79e76FF |
Saturated and desaturated colors of #a79e76
HSL Code | Preview |
---|---|
hsl(49, 10%, 56%) | |
hsl(49, 20%, 56%) | |
hsl(49, 40%, 56%) | |
hsl(49, 60%, 56%) | |
hsl(49, 80%, 56%) | |
hsl(49, 100%, 56%) |
#a79e76 Color Usage In CSS
body { color: #a79e76; } p { color: rgb(167, 158, 118); } header { border-bottom:1px solid #a79e76; }