#e53162 Color
Color Codes | |
---|---|
Hex Code | #e53162 |
RGB Code | rgb(229, 49, 98) |
HSL Code | hsl(344, 78%, 55%) |
#e53162 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(229, 49, 98); }
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(344, 78%, 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 #e53162
RGB Code | Hex Code | Preview |
---|---|---|
rgb(229, 49, 98, 10%) | #e531621a | |
rgb(229, 49, 98, 20%) | #e5316233 | |
rgb(229, 49, 98, 40%) | #e531624C | |
rgb(229, 49, 98, 60%) | #e5316299 | |
rgb(229, 49, 98, 80%) | #e53162CC | |
rgb(229, 49, 98, 100%) | #e53162FF |
Saturated and desaturated colors of #e53162
HSL Code | Preview |
---|---|
hsl(344, 10%, 55%) | |
hsl(344, 20%, 55%) | |
hsl(344, 40%, 55%) | |
hsl(344, 60%, 55%) | |
hsl(344, 80%, 55%) | |
hsl(344, 100%, 55%) |
#e53162 Color Usage In CSS
body { color: #e53162; } p { color: rgb(229, 49, 98); } header { border-bottom:1px solid #e53162; }