#e828cd Color
Color Codes | |
---|---|
Hex Code | #e828cd |
RGB Code | rgb(232, 40, 205) |
HSL Code | hsl(308, 81%, 53%) |
#e828cd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(232, 40, 205); }
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(308, 81%, 53%); }
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 #e828cd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(232, 40, 205, 10%) | #e828cd1a | |
rgb(232, 40, 205, 20%) | #e828cd33 | |
rgb(232, 40, 205, 40%) | #e828cd4C | |
rgb(232, 40, 205, 60%) | #e828cd99 | |
rgb(232, 40, 205, 80%) | #e828cdCC | |
rgb(232, 40, 205, 100%) | #e828cdFF |
Saturated and desaturated colors of #e828cd
HSL Code | Preview |
---|---|
hsl(308, 10%, 53%) | |
hsl(308, 20%, 53%) | |
hsl(308, 40%, 53%) | |
hsl(308, 60%, 53%) | |
hsl(308, 80%, 53%) | |
hsl(308, 100%, 53%) |
#e828cd Color Usage In CSS
body { color: #e828cd; } p { color: rgb(232, 40, 205); } header { border-bottom:1px solid #e828cd; }