#e8544b Color
Color Codes | |
---|---|
Hex Code | #e8544b |
RGB Code | rgb(232, 84, 75) |
HSL Code | hsl(3, 77%, 60%) |
#e8544b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(232, 84, 75); }
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(3, 77%, 60%); }
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 #e8544b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(232, 84, 75, 10%) | #e8544b1a | |
rgb(232, 84, 75, 20%) | #e8544b33 | |
rgb(232, 84, 75, 40%) | #e8544b4C | |
rgb(232, 84, 75, 60%) | #e8544b99 | |
rgb(232, 84, 75, 80%) | #e8544bCC | |
rgb(232, 84, 75, 100%) | #e8544bFF |
Saturated and desaturated colors of #e8544b
HSL Code | Preview |
---|---|
hsl(3, 10%, 60%) | |
hsl(3, 20%, 60%) | |
hsl(3, 40%, 60%) | |
hsl(3, 60%, 60%) | |
hsl(3, 80%, 60%) | |
hsl(3, 100%, 60%) |
#e8544b Color Usage In CSS
body { color: #e8544b; } p { color: rgb(232, 84, 75); } header { border-bottom:1px solid #e8544b; }