#571856 Color
Color Codes | |
---|---|
Hex Code | #571856 |
RGB Code | rgb(87, 24, 86) |
HSL Code | hsl(301, 57%, 22%) |
#571856 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(87, 24, 86); }
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(301, 57%, 22%); }
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 #571856
RGB Code | Hex Code | Preview |
---|---|---|
rgb(87, 24, 86, 10%) | #5718561a | |
rgb(87, 24, 86, 20%) | #57185633 | |
rgb(87, 24, 86, 40%) | #5718564C | |
rgb(87, 24, 86, 60%) | #57185699 | |
rgb(87, 24, 86, 80%) | #571856CC | |
rgb(87, 24, 86, 100%) | #571856FF |
Saturated and desaturated colors of #571856
HSL Code | Preview |
---|---|
hsl(301, 10%, 22%) | |
hsl(301, 20%, 22%) | |
hsl(301, 40%, 22%) | |
hsl(301, 60%, 22%) | |
hsl(301, 80%, 22%) | |
hsl(301, 100%, 22%) |
#571856 Color Usage In CSS
body { color: #571856; } p { color: rgb(87, 24, 86); } header { border-bottom:1px solid #571856; }