#e32d9a Color
Color Codes | |
---|---|
Hex Code | #e32d9a |
RGB Code | rgb(227, 45, 154) |
HSL Code | hsl(324, 76%, 53%) |
#e32d9a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(227, 45, 154); }
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(324, 76%, 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 #e32d9a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(227, 45, 154, 10%) | #e32d9a1a | |
rgb(227, 45, 154, 20%) | #e32d9a33 | |
rgb(227, 45, 154, 40%) | #e32d9a4C | |
rgb(227, 45, 154, 60%) | #e32d9a99 | |
rgb(227, 45, 154, 80%) | #e32d9aCC | |
rgb(227, 45, 154, 100%) | #e32d9aFF |
Saturated and desaturated colors of #e32d9a
HSL Code | Preview |
---|---|
hsl(324, 10%, 53%) | |
hsl(324, 20%, 53%) | |
hsl(324, 40%, 53%) | |
hsl(324, 60%, 53%) | |
hsl(324, 80%, 53%) | |
hsl(324, 100%, 53%) |
#e32d9a Color Usage In CSS
body { color: #e32d9a; } p { color: rgb(227, 45, 154); } header { border-bottom:1px solid #e32d9a; }