#994c07 Color
Color Codes | |
---|---|
Hex Code | #994c07 |
RGB Code | rgb(153, 76, 07) |
HSL Code | hsl(28, 91%, 31%) |
#994c07 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(153, 76, 07); }
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(28, 91%, 31%); }
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 #994c07
RGB Code | Hex Code | Preview |
---|---|---|
rgb(153, 76, 07, 10%) | #994c071a | |
rgb(153, 76, 07, 20%) | #994c0733 | |
rgb(153, 76, 07, 40%) | #994c074C | |
rgb(153, 76, 07, 60%) | #994c0799 | |
rgb(153, 76, 07, 80%) | #994c07CC | |
rgb(153, 76, 07, 100%) | #994c07FF |
Saturated and desaturated colors of #994c07
HSL Code | Preview |
---|---|
hsl(28, 10%, 31%) | |
hsl(28, 20%, 31%) | |
hsl(28, 40%, 31%) | |
hsl(28, 60%, 31%) | |
hsl(28, 80%, 31%) | |
hsl(28, 100%, 31%) |
#994c07 Color Usage In CSS
body { color: #994c07; } p { color: rgb(153, 76, 07); } header { border-bottom:1px solid #994c07; }