#e73284 Color
Color Codes | |
---|---|
Hex Code | #e73284 |
RGB Code | rgb(231, 50, 132) |
HSL Code | hsl(333, 79%, 55%) |
#e73284 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(231, 50, 132); }
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(333, 79%, 55%); }
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 #e73284
RGB Code | Hex Code | Preview |
---|---|---|
rgb(231, 50, 132, 10%) | #e732841a | |
rgb(231, 50, 132, 20%) | #e7328433 | |
rgb(231, 50, 132, 40%) | #e732844C | |
rgb(231, 50, 132, 60%) | #e7328499 | |
rgb(231, 50, 132, 80%) | #e73284CC | |
rgb(231, 50, 132, 100%) | #e73284FF |
Saturated and desaturated colors of #e73284
HSL Code | Preview |
---|---|
hsl(333, 10%, 55%) | |
hsl(333, 20%, 55%) | |
hsl(333, 40%, 55%) | |
hsl(333, 60%, 55%) | |
hsl(333, 80%, 55%) | |
hsl(333, 100%, 55%) |
#e73284 Color Usage In CSS
body { color: #e73284; } p { color: rgb(231, 50, 132); } header { border-bottom:1px solid #e73284; }