#a09712 Color
Color Codes | |
---|---|
Hex Code | #a09712 |
RGB Code | rgb(160, 151, 18) |
HSL Code | hsl(56, 80%, 35%) |
#a09712 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(160, 151, 18); }
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(56, 80%, 35%); }
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 #a09712
RGB Code | Hex Code | Preview |
---|---|---|
rgb(160, 151, 18, 10%) | #a097121a | |
rgb(160, 151, 18, 20%) | #a0971233 | |
rgb(160, 151, 18, 40%) | #a097124C | |
rgb(160, 151, 18, 60%) | #a0971299 | |
rgb(160, 151, 18, 80%) | #a09712CC | |
rgb(160, 151, 18, 100%) | #a09712FF |
Saturated and desaturated colors of #a09712
HSL Code | Preview |
---|---|
hsl(56, 10%, 35%) | |
hsl(56, 20%, 35%) | |
hsl(56, 40%, 35%) | |
hsl(56, 60%, 35%) | |
hsl(56, 80%, 35%) | |
hsl(56, 100%, 35%) |
#a09712 Color Usage In CSS
body { color: #a09712; } p { color: rgb(160, 151, 18); } header { border-bottom:1px solid #a09712; }