#a87c53 Color
Color Codes | |
---|---|
Hex Code | #a87c53 |
RGB Code | rgb(168, 124, 83) |
HSL Code | hsl(29, 34%, 49%) |
#a87c53 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(168, 124, 83); }
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(29, 34%, 49%); }
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 #a87c53
RGB Code | Hex Code | Preview |
---|---|---|
rgb(168, 124, 83, 10%) | #a87c531a | |
rgb(168, 124, 83, 20%) | #a87c5333 | |
rgb(168, 124, 83, 40%) | #a87c534C | |
rgb(168, 124, 83, 60%) | #a87c5399 | |
rgb(168, 124, 83, 80%) | #a87c53CC | |
rgb(168, 124, 83, 100%) | #a87c53FF |
Saturated and desaturated colors of #a87c53
HSL Code | Preview |
---|---|
hsl(29, 10%, 49%) | |
hsl(29, 20%, 49%) | |
hsl(29, 40%, 49%) | |
hsl(29, 60%, 49%) | |
hsl(29, 80%, 49%) | |
hsl(29, 100%, 49%) |
#a87c53 Color Usage In CSS
body { color: #a87c53; } p { color: rgb(168, 124, 83); } header { border-bottom:1px solid #a87c53; }