#e82952 Color
Color Codes | |
---|---|
Hex Code | #e82952 |
RGB Code | rgb(232, 41, 82) |
HSL Code | hsl(347, 81%, 54%) |
#e82952 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(232, 41, 82); }
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(347, 81%, 54%); }
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 #e82952
RGB Code | Hex Code | Preview |
---|---|---|
rgb(232, 41, 82, 10%) | #e829521a | |
rgb(232, 41, 82, 20%) | #e8295233 | |
rgb(232, 41, 82, 40%) | #e829524C | |
rgb(232, 41, 82, 60%) | #e8295299 | |
rgb(232, 41, 82, 80%) | #e82952CC | |
rgb(232, 41, 82, 100%) | #e82952FF |
Saturated and desaturated colors of #e82952
HSL Code | Preview |
---|---|
hsl(347, 10%, 54%) | |
hsl(347, 20%, 54%) | |
hsl(347, 40%, 54%) | |
hsl(347, 60%, 54%) | |
hsl(347, 80%, 54%) | |
hsl(347, 100%, 54%) |
#e82952 Color Usage In CSS
body { color: #e82952; } p { color: rgb(232, 41, 82); } header { border-bottom:1px solid #e82952; }