#e92322 Color
Color Codes | |
---|---|
Hex Code | #e92322 |
RGB Code | rgb(233, 35, 34) |
HSL Code | hsl(0, 82%, 52%) |
#e92322 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(233, 35, 34); }
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(0, 82%, 52%); }
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 #e92322
RGB Code | Hex Code | Preview |
---|---|---|
rgb(233, 35, 34, 10%) | #e923221a | |
rgb(233, 35, 34, 20%) | #e9232233 | |
rgb(233, 35, 34, 40%) | #e923224C | |
rgb(233, 35, 34, 60%) | #e9232299 | |
rgb(233, 35, 34, 80%) | #e92322CC | |
rgb(233, 35, 34, 100%) | #e92322FF |
Saturated and desaturated colors of #e92322
HSL Code | Preview |
---|---|
hsl(0, 10%, 52%) | |
hsl(0, 20%, 52%) | |
hsl(0, 40%, 52%) | |
hsl(0, 60%, 52%) | |
hsl(0, 80%, 52%) | |
hsl(0, 100%, 52%) |
#e92322 Color Usage In CSS
body { color: #e92322; } p { color: rgb(233, 35, 34); } header { border-bottom:1px solid #e92322; }