#e8023b Color
Color Codes | |
---|---|
Hex Code | #e8023b |
RGB Code | rgb(232, 02, 59) |
HSL Code | hsl(345, 98%, 46%) |
#e8023b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(232, 02, 59); }
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(345, 98%, 46%); }
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 #e8023b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(232, 02, 59, 10%) | #e8023b1a | |
rgb(232, 02, 59, 20%) | #e8023b33 | |
rgb(232, 02, 59, 40%) | #e8023b4C | |
rgb(232, 02, 59, 60%) | #e8023b99 | |
rgb(232, 02, 59, 80%) | #e8023bCC | |
rgb(232, 02, 59, 100%) | #e8023bFF |
Saturated and desaturated colors of #e8023b
HSL Code | Preview |
---|---|
hsl(345, 10%, 46%) | |
hsl(345, 20%, 46%) | |
hsl(345, 40%, 46%) | |
hsl(345, 60%, 46%) | |
hsl(345, 80%, 46%) | |
hsl(345, 100%, 46%) |
#e8023b Color Usage In CSS
body { color: #e8023b; } p { color: rgb(232, 02, 59); } header { border-bottom:1px solid #e8023b; }