#e32a81 Color
Color Codes | |
---|---|
Hex Code | #e32a81 |
RGB Code | rgb(227, 42, 129) |
HSL Code | hsl(332, 77%, 53%) |
#e32a81 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(227, 42, 129); }
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(332, 77%, 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 #e32a81
RGB Code | Hex Code | Preview |
---|---|---|
rgb(227, 42, 129, 10%) | #e32a811a | |
rgb(227, 42, 129, 20%) | #e32a8133 | |
rgb(227, 42, 129, 40%) | #e32a814C | |
rgb(227, 42, 129, 60%) | #e32a8199 | |
rgb(227, 42, 129, 80%) | #e32a81CC | |
rgb(227, 42, 129, 100%) | #e32a81FF |
Saturated and desaturated colors of #e32a81
HSL Code | Preview |
---|---|
hsl(332, 10%, 53%) | |
hsl(332, 20%, 53%) | |
hsl(332, 40%, 53%) | |
hsl(332, 60%, 53%) | |
hsl(332, 80%, 53%) | |
hsl(332, 100%, 53%) |
#e32a81 Color Usage In CSS
body { color: #e32a81; } p { color: rgb(227, 42, 129); } header { border-bottom:1px solid #e32a81; }