#9d532b Color
Color Codes | |
---|---|
Hex Code | #9d532b |
RGB Code | rgb(157, 83, 43) |
HSL Code | hsl(21, 57%, 39%) |
#9d532b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(157, 83, 43); }
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(21, 57%, 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 #9d532b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(157, 83, 43, 10%) | #9d532b1a | |
rgb(157, 83, 43, 20%) | #9d532b33 | |
rgb(157, 83, 43, 40%) | #9d532b4C | |
rgb(157, 83, 43, 60%) | #9d532b99 | |
rgb(157, 83, 43, 80%) | #9d532bCC | |
rgb(157, 83, 43, 100%) | #9d532bFF |
Saturated and desaturated colors of #9d532b
HSL Code | Preview |
---|---|
hsl(21, 10%, 39%) | |
hsl(21, 20%, 39%) | |
hsl(21, 40%, 39%) | |
hsl(21, 60%, 39%) | |
hsl(21, 80%, 39%) | |
hsl(21, 100%, 39%) |
#9d532b Color Usage In CSS
body { color: #9d532b; } p { color: rgb(157, 83, 43); } header { border-bottom:1px solid #9d532b; }