#e41625 Color
Color Codes | |
---|---|
Hex Code | #e41625 |
RGB Code | rgb(228, 22, 37) |
HSL Code | hsl(356, 82%, 49%) |
#e41625 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(228, 22, 37); }
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, 82%, 49%); }
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 #e41625
RGB Code | Hex Code | Preview |
---|---|---|
rgb(228, 22, 37, 10%) | #e416251a | |
rgb(228, 22, 37, 20%) | #e4162533 | |
rgb(228, 22, 37, 40%) | #e416254C | |
rgb(228, 22, 37, 60%) | #e4162599 | |
rgb(228, 22, 37, 80%) | #e41625CC | |
rgb(228, 22, 37, 100%) | #e41625FF |
Saturated and desaturated colors of #e41625
HSL Code | Preview |
---|---|
hsl(356, 10%, 49%) | |
hsl(356, 20%, 49%) | |
hsl(356, 40%, 49%) | |
hsl(356, 60%, 49%) | |
hsl(356, 80%, 49%) | |
hsl(356, 100%, 49%) |
#e41625 Color Usage In CSS
body { color: #e41625; } p { color: rgb(228, 22, 37); } header { border-bottom:1px solid #e41625; }