#842d5c Color
Color Codes | |
---|---|
Hex Code | #842d5c |
RGB Code | rgb(132, 45, 92) |
HSL Code | hsl(328, 49%, 35%) |
#842d5c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 45, 92); }
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(328, 49%, 35%); }
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 #842d5c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 45, 92, 10%) | #842d5c1a | |
rgb(132, 45, 92, 20%) | #842d5c33 | |
rgb(132, 45, 92, 40%) | #842d5c4C | |
rgb(132, 45, 92, 60%) | #842d5c99 | |
rgb(132, 45, 92, 80%) | #842d5cCC | |
rgb(132, 45, 92, 100%) | #842d5cFF |
Saturated and desaturated colors of #842d5c
HSL Code | Preview |
---|---|
hsl(328, 10%, 35%) | |
hsl(328, 20%, 35%) | |
hsl(328, 40%, 35%) | |
hsl(328, 60%, 35%) | |
hsl(328, 80%, 35%) | |
hsl(328, 100%, 35%) |
#842d5c Color Usage In CSS
body { color: #842d5c; } p { color: rgb(132, 45, 92); } header { border-bottom:1px solid #842d5c; }