#a57941 Color
Color Codes | |
---|---|
Hex Code | #a57941 |
RGB Code | rgb(165, 121, 65) |
HSL Code | hsl(34, 43%, 45%) |
#a57941 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(165, 121, 65); }
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(34, 43%, 45%); }
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 #a57941
RGB Code | Hex Code | Preview |
---|---|---|
rgb(165, 121, 65, 10%) | #a579411a | |
rgb(165, 121, 65, 20%) | #a5794133 | |
rgb(165, 121, 65, 40%) | #a579414C | |
rgb(165, 121, 65, 60%) | #a5794199 | |
rgb(165, 121, 65, 80%) | #a57941CC | |
rgb(165, 121, 65, 100%) | #a57941FF |
Saturated and desaturated colors of #a57941
HSL Code | Preview |
---|---|
hsl(34, 10%, 45%) | |
hsl(34, 20%, 45%) | |
hsl(34, 40%, 45%) | |
hsl(34, 60%, 45%) | |
hsl(34, 80%, 45%) | |
hsl(34, 100%, 45%) |
#a57941 Color Usage In CSS
body { color: #a57941; } p { color: rgb(165, 121, 65); } header { border-bottom:1px solid #a57941; }