#e75fab Color
Color Codes | |
---|---|
Hex Code | #e75fab |
RGB Code | rgb(231, 95, 171) |
HSL Code | hsl(326, 74%, 64%) |
#e75fab Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(231, 95, 171); }
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(326, 74%, 64%); }
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 #e75fab
RGB Code | Hex Code | Preview |
---|---|---|
rgb(231, 95, 171, 10%) | #e75fab1a | |
rgb(231, 95, 171, 20%) | #e75fab33 | |
rgb(231, 95, 171, 40%) | #e75fab4C | |
rgb(231, 95, 171, 60%) | #e75fab99 | |
rgb(231, 95, 171, 80%) | #e75fabCC | |
rgb(231, 95, 171, 100%) | #e75fabFF |
Saturated and desaturated colors of #e75fab
HSL Code | Preview |
---|---|
hsl(326, 10%, 64%) | |
hsl(326, 20%, 64%) | |
hsl(326, 40%, 64%) | |
hsl(326, 60%, 64%) | |
hsl(326, 80%, 64%) | |
hsl(326, 100%, 64%) |
#e75fab Color Usage In CSS
body { color: #e75fab; } p { color: rgb(231, 95, 171); } header { border-bottom:1px solid #e75fab; }