#ac9050 Color
Color Codes | |
---|---|
Hex Code | #ac9050 |
RGB Code | rgb(172, 144, 80) |
HSL Code | hsl(42, 37%, 49%) |
#ac9050 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(172, 144, 80); }
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(42, 37%, 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 #ac9050
RGB Code | Hex Code | Preview |
---|---|---|
rgb(172, 144, 80, 10%) | #ac90501a | |
rgb(172, 144, 80, 20%) | #ac905033 | |
rgb(172, 144, 80, 40%) | #ac90504C | |
rgb(172, 144, 80, 60%) | #ac905099 | |
rgb(172, 144, 80, 80%) | #ac9050CC | |
rgb(172, 144, 80, 100%) | #ac9050FF |
Saturated and desaturated colors of #ac9050
HSL Code | Preview |
---|---|
hsl(42, 10%, 49%) | |
hsl(42, 20%, 49%) | |
hsl(42, 40%, 49%) | |
hsl(42, 60%, 49%) | |
hsl(42, 80%, 49%) | |
hsl(42, 100%, 49%) |
#ac9050 Color Usage In CSS
body { color: #ac9050; } p { color: rgb(172, 144, 80); } header { border-bottom:1px solid #ac9050; }