#e14808 Color
Color Codes | |
---|---|
Hex Code | #e14808 |
RGB Code | rgb(225, 72, 08) |
HSL Code | hsl(18, 93%, 46%) |
#e14808 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(225, 72, 08); }
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(18, 93%, 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 #e14808
RGB Code | Hex Code | Preview |
---|---|---|
rgb(225, 72, 08, 10%) | #e148081a | |
rgb(225, 72, 08, 20%) | #e1480833 | |
rgb(225, 72, 08, 40%) | #e148084C | |
rgb(225, 72, 08, 60%) | #e1480899 | |
rgb(225, 72, 08, 80%) | #e14808CC | |
rgb(225, 72, 08, 100%) | #e14808FF |
Saturated and desaturated colors of #e14808
HSL Code | Preview |
---|---|
hsl(18, 10%, 46%) | |
hsl(18, 20%, 46%) | |
hsl(18, 40%, 46%) | |
hsl(18, 60%, 46%) | |
hsl(18, 80%, 46%) | |
hsl(18, 100%, 46%) |
#e14808 Color Usage In CSS
body { color: #e14808; } p { color: rgb(225, 72, 08); } header { border-bottom:1px solid #e14808; }