#e43274 Color
Color Codes | |
---|---|
Hex Code | #e43274 |
RGB Code | rgb(228, 50, 116) |
HSL Code | hsl(338, 77%, 55%) |
#e43274 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(228, 50, 116); }
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(338, 77%, 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 #e43274
RGB Code | Hex Code | Preview |
---|---|---|
rgb(228, 50, 116, 10%) | #e432741a | |
rgb(228, 50, 116, 20%) | #e4327433 | |
rgb(228, 50, 116, 40%) | #e432744C | |
rgb(228, 50, 116, 60%) | #e4327499 | |
rgb(228, 50, 116, 80%) | #e43274CC | |
rgb(228, 50, 116, 100%) | #e43274FF |
Saturated and desaturated colors of #e43274
HSL Code | Preview |
---|---|
hsl(338, 10%, 55%) | |
hsl(338, 20%, 55%) | |
hsl(338, 40%, 55%) | |
hsl(338, 60%, 55%) | |
hsl(338, 80%, 55%) | |
hsl(338, 100%, 55%) |
#e43274 Color Usage In CSS
body { color: #e43274; } p { color: rgb(228, 50, 116); } header { border-bottom:1px solid #e43274; }