#e391a7 Color
Color Codes | |
---|---|
Hex Code | #e391a7 |
RGB Code | rgb(227, 145, 167) |
HSL Code | hsl(344, 59%, 73%) |
#e391a7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(227, 145, 167); }
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(344, 59%, 73%); }
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 #e391a7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(227, 145, 167, 10%) | #e391a71a | |
rgb(227, 145, 167, 20%) | #e391a733 | |
rgb(227, 145, 167, 40%) | #e391a74C | |
rgb(227, 145, 167, 60%) | #e391a799 | |
rgb(227, 145, 167, 80%) | #e391a7CC | |
rgb(227, 145, 167, 100%) | #e391a7FF |
Saturated and desaturated colors of #e391a7
HSL Code | Preview |
---|---|
hsl(344, 10%, 73%) | |
hsl(344, 20%, 73%) | |
hsl(344, 40%, 73%) | |
hsl(344, 60%, 73%) | |
hsl(344, 80%, 73%) | |
hsl(344, 100%, 73%) |
#e391a7 Color Usage In CSS
body { color: #e391a7; } p { color: rgb(227, 145, 167); } header { border-bottom:1px solid #e391a7; }