#a08a25 Color
Color Codes | |
---|---|
Hex Code | #a08a25 |
RGB Code | rgb(160, 138, 37) |
HSL Code | hsl(49, 62%, 39%) |
#a08a25 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(160, 138, 37); }
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(49, 62%, 39%); }
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 #a08a25
RGB Code | Hex Code | Preview |
---|---|---|
rgb(160, 138, 37, 10%) | #a08a251a | |
rgb(160, 138, 37, 20%) | #a08a2533 | |
rgb(160, 138, 37, 40%) | #a08a254C | |
rgb(160, 138, 37, 60%) | #a08a2599 | |
rgb(160, 138, 37, 80%) | #a08a25CC | |
rgb(160, 138, 37, 100%) | #a08a25FF |
Saturated and desaturated colors of #a08a25
HSL Code | Preview |
---|---|
hsl(49, 10%, 39%) | |
hsl(49, 20%, 39%) | |
hsl(49, 40%, 39%) | |
hsl(49, 60%, 39%) | |
hsl(49, 80%, 39%) | |
hsl(49, 100%, 39%) |
#a08a25 Color Usage In CSS
body { color: #a08a25; } p { color: rgb(160, 138, 37); } header { border-bottom:1px solid #a08a25; }