#e9952d Color
Color Codes | |
---|---|
Hex Code | #e9952d |
RGB Code | rgb(233, 149, 45) |
HSL Code | hsl(33, 81%, 55%) |
#e9952d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(233, 149, 45); }
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(33, 81%, 55%); }
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 #e9952d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(233, 149, 45, 10%) | #e9952d1a | |
rgb(233, 149, 45, 20%) | #e9952d33 | |
rgb(233, 149, 45, 40%) | #e9952d4C | |
rgb(233, 149, 45, 60%) | #e9952d99 | |
rgb(233, 149, 45, 80%) | #e9952dCC | |
rgb(233, 149, 45, 100%) | #e9952dFF |
Saturated and desaturated colors of #e9952d
HSL Code | Preview |
---|---|
hsl(33, 10%, 55%) | |
hsl(33, 20%, 55%) | |
hsl(33, 40%, 55%) | |
hsl(33, 60%, 55%) | |
hsl(33, 80%, 55%) | |
hsl(33, 100%, 55%) |
#e9952d Color Usage In CSS
body { color: #e9952d; } p { color: rgb(233, 149, 45); } header { border-bottom:1px solid #e9952d; }