#e11449 Color
Color Codes | |
---|---|
Hex Code | #e11449 |
RGB Code | rgb(225, 20, 73) |
HSL Code | hsl(344, 84%, 48%) |
#e11449 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(225, 20, 73); }
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, 84%, 48%); }
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 #e11449
RGB Code | Hex Code | Preview |
---|---|---|
rgb(225, 20, 73, 10%) | #e114491a | |
rgb(225, 20, 73, 20%) | #e1144933 | |
rgb(225, 20, 73, 40%) | #e114494C | |
rgb(225, 20, 73, 60%) | #e1144999 | |
rgb(225, 20, 73, 80%) | #e11449CC | |
rgb(225, 20, 73, 100%) | #e11449FF |
Saturated and desaturated colors of #e11449
HSL Code | Preview |
---|---|
hsl(344, 10%, 48%) | |
hsl(344, 20%, 48%) | |
hsl(344, 40%, 48%) | |
hsl(344, 60%, 48%) | |
hsl(344, 80%, 48%) | |
hsl(344, 100%, 48%) |
#e11449 Color Usage In CSS
body { color: #e11449; } p { color: rgb(225, 20, 73); } header { border-bottom:1px solid #e11449; }