#e15820 Color
Color Codes | |
---|---|
Hex Code | #e15820 |
RGB Code | rgb(225, 88, 32) |
HSL Code | hsl(17, 76%, 50%) |
#e15820 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(225, 88, 32); }
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(17, 76%, 50%); }
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 #e15820
RGB Code | Hex Code | Preview |
---|---|---|
rgb(225, 88, 32, 10%) | #e158201a | |
rgb(225, 88, 32, 20%) | #e1582033 | |
rgb(225, 88, 32, 40%) | #e158204C | |
rgb(225, 88, 32, 60%) | #e1582099 | |
rgb(225, 88, 32, 80%) | #e15820CC | |
rgb(225, 88, 32, 100%) | #e15820FF |
Saturated and desaturated colors of #e15820
HSL Code | Preview |
---|---|
hsl(17, 10%, 50%) | |
hsl(17, 20%, 50%) | |
hsl(17, 40%, 50%) | |
hsl(17, 60%, 50%) | |
hsl(17, 80%, 50%) | |
hsl(17, 100%, 50%) |
#e15820 Color Usage In CSS
body { color: #e15820; } p { color: rgb(225, 88, 32); } header { border-bottom:1px solid #e15820; }