#e11a25 Color
Color Codes | |
---|---|
Hex Code | #e11a25 |
RGB Code | rgb(225, 26, 37) |
HSL Code | hsl(357, 79%, 49%) |
#e11a25 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(225, 26, 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(357, 79%, 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 #e11a25
RGB Code | Hex Code | Preview |
---|---|---|
rgb(225, 26, 37, 10%) | #e11a251a | |
rgb(225, 26, 37, 20%) | #e11a2533 | |
rgb(225, 26, 37, 40%) | #e11a254C | |
rgb(225, 26, 37, 60%) | #e11a2599 | |
rgb(225, 26, 37, 80%) | #e11a25CC | |
rgb(225, 26, 37, 100%) | #e11a25FF |
Saturated and desaturated colors of #e11a25
HSL Code | Preview |
---|---|
hsl(357, 10%, 49%) | |
hsl(357, 20%, 49%) | |
hsl(357, 40%, 49%) | |
hsl(357, 60%, 49%) | |
hsl(357, 80%, 49%) | |
hsl(357, 100%, 49%) |
#e11a25 Color Usage In CSS
body { color: #e11a25; } p { color: rgb(225, 26, 37); } header { border-bottom:1px solid #e11a25; }