#e32007 Color
Color Codes | |
---|---|
Hex Code | #e32007 |
RGB Code | rgb(227, 32, 07) |
HSL Code | hsl(7, 94%, 46%) |
#e32007 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(227, 32, 07); }
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(7, 94%, 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 #e32007
RGB Code | Hex Code | Preview |
---|---|---|
rgb(227, 32, 07, 10%) | #e320071a | |
rgb(227, 32, 07, 20%) | #e3200733 | |
rgb(227, 32, 07, 40%) | #e320074C | |
rgb(227, 32, 07, 60%) | #e3200799 | |
rgb(227, 32, 07, 80%) | #e32007CC | |
rgb(227, 32, 07, 100%) | #e32007FF |
Saturated and desaturated colors of #e32007
HSL Code | Preview |
---|---|
hsl(7, 10%, 46%) | |
hsl(7, 20%, 46%) | |
hsl(7, 40%, 46%) | |
hsl(7, 60%, 46%) | |
hsl(7, 80%, 46%) | |
hsl(7, 100%, 46%) |
#e32007 Color Usage In CSS
body { color: #e32007; } p { color: rgb(227, 32, 07); } header { border-bottom:1px solid #e32007; }