#e71b64 Color
Color Codes | |
---|---|
Hex Code | #e71b64 |
RGB Code | rgb(231, 27, 100) |
HSL Code | hsl(339, 81%, 51%) |
#e71b64 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(231, 27, 100); }
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(339, 81%, 51%); }
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 #e71b64
RGB Code | Hex Code | Preview |
---|---|---|
rgb(231, 27, 100, 10%) | #e71b641a | |
rgb(231, 27, 100, 20%) | #e71b6433 | |
rgb(231, 27, 100, 40%) | #e71b644C | |
rgb(231, 27, 100, 60%) | #e71b6499 | |
rgb(231, 27, 100, 80%) | #e71b64CC | |
rgb(231, 27, 100, 100%) | #e71b64FF |
Saturated and desaturated colors of #e71b64
HSL Code | Preview |
---|---|
hsl(339, 10%, 51%) | |
hsl(339, 20%, 51%) | |
hsl(339, 40%, 51%) | |
hsl(339, 60%, 51%) | |
hsl(339, 80%, 51%) | |
hsl(339, 100%, 51%) |
#e71b64 Color Usage In CSS
body { color: #e71b64; } p { color: rgb(231, 27, 100); } header { border-bottom:1px solid #e71b64; }