#891f08 Color
Color Codes | |
---|---|
Hex Code | #891f08 |
RGB Code | rgb(137, 31, 08) |
HSL Code | hsl(11, 89%, 28%) |
#891f08 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(137, 31, 08); }
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, 89%, 28%); }
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 #891f08
RGB Code | Hex Code | Preview |
---|---|---|
rgb(137, 31, 08, 10%) | #891f081a | |
rgb(137, 31, 08, 20%) | #891f0833 | |
rgb(137, 31, 08, 40%) | #891f084C | |
rgb(137, 31, 08, 60%) | #891f0899 | |
rgb(137, 31, 08, 80%) | #891f08CC | |
rgb(137, 31, 08, 100%) | #891f08FF |
Saturated and desaturated colors of #891f08
HSL Code | Preview |
---|---|
hsl(11, 10%, 28%) | |
hsl(11, 20%, 28%) | |
hsl(11, 40%, 28%) | |
hsl(11, 60%, 28%) | |
hsl(11, 80%, 28%) | |
hsl(11, 100%, 28%) |
#891f08 Color Usage In CSS
body { color: #891f08; } p { color: rgb(137, 31, 08); } header { border-bottom:1px solid #891f08; }