#e8470a Color
Color Codes | |
---|---|
Hex Code | #e8470a |
RGB Code | rgb(232, 71, 10) |
HSL Code | hsl(16, 92%, 47%) |
#e8470a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(232, 71, 10); }
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(16, 92%, 47%); }
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 #e8470a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(232, 71, 10, 10%) | #e8470a1a | |
rgb(232, 71, 10, 20%) | #e8470a33 | |
rgb(232, 71, 10, 40%) | #e8470a4C | |
rgb(232, 71, 10, 60%) | #e8470a99 | |
rgb(232, 71, 10, 80%) | #e8470aCC | |
rgb(232, 71, 10, 100%) | #e8470aFF |
Saturated and desaturated colors of #e8470a
HSL Code | Preview |
---|---|
hsl(16, 10%, 47%) | |
hsl(16, 20%, 47%) | |
hsl(16, 40%, 47%) | |
hsl(16, 60%, 47%) | |
hsl(16, 80%, 47%) | |
hsl(16, 100%, 47%) |
#e8470a Color Usage In CSS
body { color: #e8470a; } p { color: rgb(232, 71, 10); } header { border-bottom:1px solid #e8470a; }