#e84f1c Color
Color Codes | |
---|---|
Hex Code | #e84f1c |
RGB Code | rgb(232, 79, 28) |
HSL Code | hsl(15, 82%, 51%) |
#e84f1c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(232, 79, 28); }
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(15, 82%, 51%); }
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 #e84f1c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(232, 79, 28, 10%) | #e84f1c1a | |
rgb(232, 79, 28, 20%) | #e84f1c33 | |
rgb(232, 79, 28, 40%) | #e84f1c4C | |
rgb(232, 79, 28, 60%) | #e84f1c99 | |
rgb(232, 79, 28, 80%) | #e84f1cCC | |
rgb(232, 79, 28, 100%) | #e84f1cFF |
Saturated and desaturated colors of #e84f1c
HSL Code | Preview |
---|---|
hsl(15, 10%, 51%) | |
hsl(15, 20%, 51%) | |
hsl(15, 40%, 51%) | |
hsl(15, 60%, 51%) | |
hsl(15, 80%, 51%) | |
hsl(15, 100%, 51%) |
#e84f1c Color Usage In CSS
body { color: #e84f1c; } p { color: rgb(232, 79, 28); } header { border-bottom:1px solid #e84f1c; }