#964037 Color
Color Codes | |
---|---|
Hex Code | #964037 |
RGB Code | rgb(150, 64, 55) |
HSL Code | hsl(6, 46%, 40%) |
#964037 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(150, 64, 55); }
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(6, 46%, 40%); }
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 #964037
RGB Code | Hex Code | Preview |
---|---|---|
rgb(150, 64, 55, 10%) | #9640371a | |
rgb(150, 64, 55, 20%) | #96403733 | |
rgb(150, 64, 55, 40%) | #9640374C | |
rgb(150, 64, 55, 60%) | #96403799 | |
rgb(150, 64, 55, 80%) | #964037CC | |
rgb(150, 64, 55, 100%) | #964037FF |
Saturated and desaturated colors of #964037
HSL Code | Preview |
---|---|
hsl(6, 10%, 40%) | |
hsl(6, 20%, 40%) | |
hsl(6, 40%, 40%) | |
hsl(6, 60%, 40%) | |
hsl(6, 80%, 40%) | |
hsl(6, 100%, 40%) |
#964037 Color Usage In CSS
body { color: #964037; } p { color: rgb(150, 64, 55); } header { border-bottom:1px solid #964037; }