#e06428 Color
Color Codes | |
---|---|
Hex Code | #e06428 |
RGB Code | rgb(224, 100, 40) |
HSL Code | hsl(20, 75%, 52%) |
#e06428 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(224, 100, 40); }
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(20, 75%, 52%); }
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 #e06428
RGB Code | Hex Code | Preview |
---|---|---|
rgb(224, 100, 40, 10%) | #e064281a | |
rgb(224, 100, 40, 20%) | #e0642833 | |
rgb(224, 100, 40, 40%) | #e064284C | |
rgb(224, 100, 40, 60%) | #e0642899 | |
rgb(224, 100, 40, 80%) | #e06428CC | |
rgb(224, 100, 40, 100%) | #e06428FF |
Saturated and desaturated colors of #e06428
HSL Code | Preview |
---|---|
hsl(20, 10%, 52%) | |
hsl(20, 20%, 52%) | |
hsl(20, 40%, 52%) | |
hsl(20, 60%, 52%) | |
hsl(20, 80%, 52%) | |
hsl(20, 100%, 52%) |
#e06428 Color Usage In CSS
body { color: #e06428; } p { color: rgb(224, 100, 40); } header { border-bottom:1px solid #e06428; }