#71210d Color
Color Codes | |
---|---|
Hex Code | #71210d |
RGB Code | rgb(113, 33, 13) |
HSL Code | hsl(12, 79%, 25%) |
#71210d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(113, 33, 13); }
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(12, 79%, 25%); }
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 #71210d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(113, 33, 13, 10%) | #71210d1a | |
rgb(113, 33, 13, 20%) | #71210d33 | |
rgb(113, 33, 13, 40%) | #71210d4C | |
rgb(113, 33, 13, 60%) | #71210d99 | |
rgb(113, 33, 13, 80%) | #71210dCC | |
rgb(113, 33, 13, 100%) | #71210dFF |
Saturated and desaturated colors of #71210d
HSL Code | Preview |
---|---|
hsl(12, 10%, 25%) | |
hsl(12, 20%, 25%) | |
hsl(12, 40%, 25%) | |
hsl(12, 60%, 25%) | |
hsl(12, 80%, 25%) | |
hsl(12, 100%, 25%) |
#71210d Color Usage In CSS
body { color: #71210d; } p { color: rgb(113, 33, 13); } header { border-bottom:1px solid #71210d; }