#e91da4 Color
Color Codes | |
---|---|
Hex Code | #e91da4 |
RGB Code | rgb(233, 29, 164) |
HSL Code | hsl(320, 82%, 51%) |
#e91da4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(233, 29, 164); }
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(320, 82%, 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 #e91da4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(233, 29, 164, 10%) | #e91da41a | |
rgb(233, 29, 164, 20%) | #e91da433 | |
rgb(233, 29, 164, 40%) | #e91da44C | |
rgb(233, 29, 164, 60%) | #e91da499 | |
rgb(233, 29, 164, 80%) | #e91da4CC | |
rgb(233, 29, 164, 100%) | #e91da4FF |
Saturated and desaturated colors of #e91da4
HSL Code | Preview |
---|---|
hsl(320, 10%, 51%) | |
hsl(320, 20%, 51%) | |
hsl(320, 40%, 51%) | |
hsl(320, 60%, 51%) | |
hsl(320, 80%, 51%) | |
hsl(320, 100%, 51%) |
#e91da4 Color Usage In CSS
body { color: #e91da4; } p { color: rgb(233, 29, 164); } header { border-bottom:1px solid #e91da4; }