#710708 Color
Color Codes | |
---|---|
Hex Code | #710708 |
RGB Code | rgb(113, 07, 08) |
HSL Code | hsl(359, 88%, 24%) |
#710708 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(113, 07, 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(359, 88%, 24%); }
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 #710708
RGB Code | Hex Code | Preview |
---|---|---|
rgb(113, 07, 08, 10%) | #7107081a | |
rgb(113, 07, 08, 20%) | #71070833 | |
rgb(113, 07, 08, 40%) | #7107084C | |
rgb(113, 07, 08, 60%) | #71070899 | |
rgb(113, 07, 08, 80%) | #710708CC | |
rgb(113, 07, 08, 100%) | #710708FF |
Saturated and desaturated colors of #710708
HSL Code | Preview |
---|---|
hsl(359, 10%, 24%) | |
hsl(359, 20%, 24%) | |
hsl(359, 40%, 24%) | |
hsl(359, 60%, 24%) | |
hsl(359, 80%, 24%) | |
hsl(359, 100%, 24%) |
#710708 Color Usage In CSS
body { color: #710708; } p { color: rgb(113, 07, 08); } header { border-bottom:1px solid #710708; }