#870622 Color
Color Codes | |
---|---|
Hex Code | #870622 |
RGB Code | rgb(135, 06, 34) |
HSL Code | hsl(347, 91%, 28%) |
#870622 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(135, 06, 34); }
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(347, 91%, 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 #870622
RGB Code | Hex Code | Preview |
---|---|---|
rgb(135, 06, 34, 10%) | #8706221a | |
rgb(135, 06, 34, 20%) | #87062233 | |
rgb(135, 06, 34, 40%) | #8706224C | |
rgb(135, 06, 34, 60%) | #87062299 | |
rgb(135, 06, 34, 80%) | #870622CC | |
rgb(135, 06, 34, 100%) | #870622FF |
Saturated and desaturated colors of #870622
HSL Code | Preview |
---|---|
hsl(347, 10%, 28%) | |
hsl(347, 20%, 28%) | |
hsl(347, 40%, 28%) | |
hsl(347, 60%, 28%) | |
hsl(347, 80%, 28%) | |
hsl(347, 100%, 28%) |
#870622 Color Usage In CSS
body { color: #870622; } p { color: rgb(135, 06, 34); } header { border-bottom:1px solid #870622; }