#a79f75 Color
Color Codes | |
---|---|
Hex Code | #a79f75 |
RGB Code | rgb(167, 159, 117) |
HSL Code | hsl(50, 22%, 56%) |
#a79f75 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(167, 159, 117); }
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(50, 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 #a79f75
RGB Code | Hex Code | Preview |
---|---|---|
rgb(167, 159, 117, 10%) | #a79f751a | |
rgb(167, 159, 117, 20%) | #a79f7533 | |
rgb(167, 159, 117, 40%) | #a79f754C | |
rgb(167, 159, 117, 60%) | #a79f7599 | |
rgb(167, 159, 117, 80%) | #a79f75CC | |
rgb(167, 159, 117, 100%) | #a79f75FF |
Saturated and desaturated colors of #a79f75
HSL Code | Preview |
---|---|
hsl(50, 10%, 56%) | |
hsl(50, 20%, 56%) | |
hsl(50, 40%, 56%) | |
hsl(50, 60%, 56%) | |
hsl(50, 80%, 56%) | |
hsl(50, 100%, 56%) |
#a79f75 Color Usage In CSS
body { color: #a79f75; } p { color: rgb(167, 159, 117); } header { border-bottom:1px solid #a79f75; }