#a09f59 Color
Color Codes | |
---|---|
Hex Code | #a09f59 |
RGB Code | rgb(160, 159, 89) |
HSL Code | hsl(59, 29%, 49%) |
#a09f59 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(160, 159, 89); }
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(59, 29%, 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 #a09f59
RGB Code | Hex Code | Preview |
---|---|---|
rgb(160, 159, 89, 10%) | #a09f591a | |
rgb(160, 159, 89, 20%) | #a09f5933 | |
rgb(160, 159, 89, 40%) | #a09f594C | |
rgb(160, 159, 89, 60%) | #a09f5999 | |
rgb(160, 159, 89, 80%) | #a09f59CC | |
rgb(160, 159, 89, 100%) | #a09f59FF |
Saturated and desaturated colors of #a09f59
HSL Code | Preview |
---|---|
hsl(59, 10%, 49%) | |
hsl(59, 20%, 49%) | |
hsl(59, 40%, 49%) | |
hsl(59, 60%, 49%) | |
hsl(59, 80%, 49%) | |
hsl(59, 100%, 49%) |
#a09f59 Color Usage In CSS
body { color: #a09f59; } p { color: rgb(160, 159, 89); } header { border-bottom:1px solid #a09f59; }