#a89d75 Color
Color Codes | |
---|---|
Hex Code | #a89d75 |
RGB Code | rgb(168, 157, 117) |
HSL Code | hsl(47, 23%, 56%) |
#a89d75 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(168, 157, 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(47, 23%, 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 #a89d75
RGB Code | Hex Code | Preview |
---|---|---|
rgb(168, 157, 117, 10%) | #a89d751a | |
rgb(168, 157, 117, 20%) | #a89d7533 | |
rgb(168, 157, 117, 40%) | #a89d754C | |
rgb(168, 157, 117, 60%) | #a89d7599 | |
rgb(168, 157, 117, 80%) | #a89d75CC | |
rgb(168, 157, 117, 100%) | #a89d75FF |
Saturated and desaturated colors of #a89d75
HSL Code | Preview |
---|---|
hsl(47, 10%, 56%) | |
hsl(47, 20%, 56%) | |
hsl(47, 40%, 56%) | |
hsl(47, 60%, 56%) | |
hsl(47, 80%, 56%) | |
hsl(47, 100%, 56%) |
#a89d75 Color Usage In CSS
body { color: #a89d75; } p { color: rgb(168, 157, 117); } header { border-bottom:1px solid #a89d75; }