#964c20 Color
Color Codes | |
---|---|
Hex Code | #964c20 |
RGB Code | rgb(150, 76, 32) |
HSL Code | hsl(22, 65%, 36%) |
#964c20 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(150, 76, 32); }
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(22, 65%, 36%); }
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 #964c20
RGB Code | Hex Code | Preview |
---|---|---|
rgb(150, 76, 32, 10%) | #964c201a | |
rgb(150, 76, 32, 20%) | #964c2033 | |
rgb(150, 76, 32, 40%) | #964c204C | |
rgb(150, 76, 32, 60%) | #964c2099 | |
rgb(150, 76, 32, 80%) | #964c20CC | |
rgb(150, 76, 32, 100%) | #964c20FF |
Saturated and desaturated colors of #964c20
HSL Code | Preview |
---|---|
hsl(22, 10%, 36%) | |
hsl(22, 20%, 36%) | |
hsl(22, 40%, 36%) | |
hsl(22, 60%, 36%) | |
hsl(22, 80%, 36%) | |
hsl(22, 100%, 36%) |
#964c20 Color Usage In CSS
body { color: #964c20; } p { color: rgb(150, 76, 32); } header { border-bottom:1px solid #964c20; }