#992f16 Color
Color Codes | |
---|---|
Hex Code | #992f16 |
RGB Code | rgb(153, 47, 22) |
HSL Code | hsl(11, 75%, 34%) |
#992f16 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(153, 47, 22); }
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(11, 75%, 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 #992f16
RGB Code | Hex Code | Preview |
---|---|---|
rgb(153, 47, 22, 10%) | #992f161a | |
rgb(153, 47, 22, 20%) | #992f1633 | |
rgb(153, 47, 22, 40%) | #992f164C | |
rgb(153, 47, 22, 60%) | #992f1699 | |
rgb(153, 47, 22, 80%) | #992f16CC | |
rgb(153, 47, 22, 100%) | #992f16FF |
Saturated and desaturated colors of #992f16
HSL Code | Preview |
---|---|
hsl(11, 10%, 34%) | |
hsl(11, 20%, 34%) | |
hsl(11, 40%, 34%) | |
hsl(11, 60%, 34%) | |
hsl(11, 80%, 34%) | |
hsl(11, 100%, 34%) |
#992f16 Color Usage In CSS
body { color: #992f16; } p { color: rgb(153, 47, 22); } header { border-bottom:1px solid #992f16; }