#700e10 Color
Color Codes | |
---|---|
Hex Code | #700e10 |
RGB Code | rgb(112, 14, 16) |
HSL Code | hsl(359, 78%, 25%) |
#700e10 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(112, 14, 16); }
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, 78%, 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 #700e10
RGB Code | Hex Code | Preview |
---|---|---|
rgb(112, 14, 16, 10%) | #700e101a | |
rgb(112, 14, 16, 20%) | #700e1033 | |
rgb(112, 14, 16, 40%) | #700e104C | |
rgb(112, 14, 16, 60%) | #700e1099 | |
rgb(112, 14, 16, 80%) | #700e10CC | |
rgb(112, 14, 16, 100%) | #700e10FF |
Saturated and desaturated colors of #700e10
HSL Code | Preview |
---|---|
hsl(359, 10%, 25%) | |
hsl(359, 20%, 25%) | |
hsl(359, 40%, 25%) | |
hsl(359, 60%, 25%) | |
hsl(359, 80%, 25%) | |
hsl(359, 100%, 25%) |
#700e10 Color Usage In CSS
body { color: #700e10; } p { color: rgb(112, 14, 16); } header { border-bottom:1px solid #700e10; }