#702811 Color
Color Codes | |
---|---|
Hex Code | #702811 |
RGB Code | rgb(112, 40, 17) |
HSL Code | hsl(15, 74%, 25%) |
#702811 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(112, 40, 17); }
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(15, 74%, 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 #702811
RGB Code | Hex Code | Preview |
---|---|---|
rgb(112, 40, 17, 10%) | #7028111a | |
rgb(112, 40, 17, 20%) | #70281133 | |
rgb(112, 40, 17, 40%) | #7028114C | |
rgb(112, 40, 17, 60%) | #70281199 | |
rgb(112, 40, 17, 80%) | #702811CC | |
rgb(112, 40, 17, 100%) | #702811FF |
Saturated and desaturated colors of #702811
HSL Code | Preview |
---|---|
hsl(15, 10%, 25%) | |
hsl(15, 20%, 25%) | |
hsl(15, 40%, 25%) | |
hsl(15, 60%, 25%) | |
hsl(15, 80%, 25%) | |
hsl(15, 100%, 25%) |
#702811 Color Usage In CSS
body { color: #702811; } p { color: rgb(112, 40, 17); } header { border-bottom:1px solid #702811; }