#e1434d Color
Color Codes | |
---|---|
Hex Code | #e1434d |
RGB Code | rgb(225, 67, 77) |
HSL Code | hsl(356, 72%, 57%) |
#e1434d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(225, 67, 77); }
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(356, 72%, 57%); }
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 #e1434d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(225, 67, 77, 10%) | #e1434d1a | |
rgb(225, 67, 77, 20%) | #e1434d33 | |
rgb(225, 67, 77, 40%) | #e1434d4C | |
rgb(225, 67, 77, 60%) | #e1434d99 | |
rgb(225, 67, 77, 80%) | #e1434dCC | |
rgb(225, 67, 77, 100%) | #e1434dFF |
Saturated and desaturated colors of #e1434d
HSL Code | Preview |
---|---|
hsl(356, 10%, 57%) | |
hsl(356, 20%, 57%) | |
hsl(356, 40%, 57%) | |
hsl(356, 60%, 57%) | |
hsl(356, 80%, 57%) | |
hsl(356, 100%, 57%) |
#e1434d Color Usage In CSS
body { color: #e1434d; } p { color: rgb(225, 67, 77); } header { border-bottom:1px solid #e1434d; }