#961837 Color
Color Codes | |
---|---|
Hex Code | #961837 |
RGB Code | rgb(150, 24, 55) |
HSL Code | hsl(345, 72%, 34%) |
#961837 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(150, 24, 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(345, 72%, 34%); }
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 #961837
RGB Code | Hex Code | Preview |
---|---|---|
rgb(150, 24, 55, 10%) | #9618371a | |
rgb(150, 24, 55, 20%) | #96183733 | |
rgb(150, 24, 55, 40%) | #9618374C | |
rgb(150, 24, 55, 60%) | #96183799 | |
rgb(150, 24, 55, 80%) | #961837CC | |
rgb(150, 24, 55, 100%) | #961837FF |
Saturated and desaturated colors of #961837
HSL Code | Preview |
---|---|
hsl(345, 10%, 34%) | |
hsl(345, 20%, 34%) | |
hsl(345, 40%, 34%) | |
hsl(345, 60%, 34%) | |
hsl(345, 80%, 34%) | |
hsl(345, 100%, 34%) |
#961837 Color Usage In CSS
body { color: #961837; } p { color: rgb(150, 24, 55); } header { border-bottom:1px solid #961837; }