#e78244 Color
Color Codes | |
---|---|
Hex Code | #e78244 |
RGB Code | rgb(231, 130, 68) |
HSL Code | hsl(23, 77%, 59%) |
#e78244 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(231, 130, 68); }
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(23, 77%, 59%); }
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 #e78244
RGB Code | Hex Code | Preview |
---|---|---|
rgb(231, 130, 68, 10%) | #e782441a | |
rgb(231, 130, 68, 20%) | #e7824433 | |
rgb(231, 130, 68, 40%) | #e782444C | |
rgb(231, 130, 68, 60%) | #e7824499 | |
rgb(231, 130, 68, 80%) | #e78244CC | |
rgb(231, 130, 68, 100%) | #e78244FF |
Saturated and desaturated colors of #e78244
HSL Code | Preview |
---|---|
hsl(23, 10%, 59%) | |
hsl(23, 20%, 59%) | |
hsl(23, 40%, 59%) | |
hsl(23, 60%, 59%) | |
hsl(23, 80%, 59%) | |
hsl(23, 100%, 59%) |
#e78244 Color Usage In CSS
body { color: #e78244; } p { color: rgb(231, 130, 68); } header { border-bottom:1px solid #e78244; }