#e841ad Color
Color Codes | |
---|---|
Hex Code | #e841ad |
RGB Code | rgb(232, 65, 173) |
HSL Code | hsl(321, 78%, 58%) |
#e841ad Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(232, 65, 173); }
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(321, 78%, 58%); }
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 #e841ad
RGB Code | Hex Code | Preview |
---|---|---|
rgb(232, 65, 173, 10%) | #e841ad1a | |
rgb(232, 65, 173, 20%) | #e841ad33 | |
rgb(232, 65, 173, 40%) | #e841ad4C | |
rgb(232, 65, 173, 60%) | #e841ad99 | |
rgb(232, 65, 173, 80%) | #e841adCC | |
rgb(232, 65, 173, 100%) | #e841adFF |
Saturated and desaturated colors of #e841ad
HSL Code | Preview |
---|---|
hsl(321, 10%, 58%) | |
hsl(321, 20%, 58%) | |
hsl(321, 40%, 58%) | |
hsl(321, 60%, 58%) | |
hsl(321, 80%, 58%) | |
hsl(321, 100%, 58%) |
#e841ad Color Usage In CSS
body { color: #e841ad; } p { color: rgb(232, 65, 173); } header { border-bottom:1px solid #e841ad; }