#e16efc Color
Color Codes | |
---|---|
Hex Code | #e16efc |
RGB Code | rgb(225, 110, 252) |
HSL Code | hsl(289, 96%, 71%) |
#e16efc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(225, 110, 252); }
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(289, 96%, 71%); }
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 #e16efc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(225, 110, 252, 10%) | #e16efc1a | |
rgb(225, 110, 252, 20%) | #e16efc33 | |
rgb(225, 110, 252, 40%) | #e16efc4C | |
rgb(225, 110, 252, 60%) | #e16efc99 | |
rgb(225, 110, 252, 80%) | #e16efcCC | |
rgb(225, 110, 252, 100%) | #e16efcFF |
Saturated and desaturated colors of #e16efc
HSL Code | Preview |
---|---|
hsl(289, 10%, 71%) | |
hsl(289, 20%, 71%) | |
hsl(289, 40%, 71%) | |
hsl(289, 60%, 71%) | |
hsl(289, 80%, 71%) | |
hsl(289, 100%, 71%) |
#e16efc Color Usage In CSS
body { color: #e16efc; } p { color: rgb(225, 110, 252); } header { border-bottom:1px solid #e16efc; }