#a0883c Color
Color Codes | |
---|---|
Hex Code | #a0883c |
RGB Code | rgb(160, 136, 60) |
HSL Code | hsl(46, 45%, 43%) |
#a0883c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(160, 136, 60); }
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(46, 45%, 43%); }
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 #a0883c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(160, 136, 60, 10%) | #a0883c1a | |
rgb(160, 136, 60, 20%) | #a0883c33 | |
rgb(160, 136, 60, 40%) | #a0883c4C | |
rgb(160, 136, 60, 60%) | #a0883c99 | |
rgb(160, 136, 60, 80%) | #a0883cCC | |
rgb(160, 136, 60, 100%) | #a0883cFF |
Saturated and desaturated colors of #a0883c
HSL Code | Preview |
---|---|
hsl(46, 10%, 43%) | |
hsl(46, 20%, 43%) | |
hsl(46, 40%, 43%) | |
hsl(46, 60%, 43%) | |
hsl(46, 80%, 43%) | |
hsl(46, 100%, 43%) |
#a0883c Color Usage In CSS
body { color: #a0883c; } p { color: rgb(160, 136, 60); } header { border-bottom:1px solid #a0883c; }