#ee5bfc Color
Color Codes | |
---|---|
Hex Code | #ee5bfc |
RGB Code | rgb(238, 91, 252) |
HSL Code | hsl(295, 96%, 67%) |
#ee5bfc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(238, 91, 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(295, 96%, 67%); }
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 #ee5bfc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(238, 91, 252, 10%) | #ee5bfc1a | |
rgb(238, 91, 252, 20%) | #ee5bfc33 | |
rgb(238, 91, 252, 40%) | #ee5bfc4C | |
rgb(238, 91, 252, 60%) | #ee5bfc99 | |
rgb(238, 91, 252, 80%) | #ee5bfcCC | |
rgb(238, 91, 252, 100%) | #ee5bfcFF |
Saturated and desaturated colors of #ee5bfc
HSL Code | Preview |
---|---|
hsl(295, 10%, 67%) | |
hsl(295, 20%, 67%) | |
hsl(295, 40%, 67%) | |
hsl(295, 60%, 67%) | |
hsl(295, 80%, 67%) | |
hsl(295, 100%, 67%) |
#ee5bfc Color Usage In CSS
body { color: #ee5bfc; } p { color: rgb(238, 91, 252); } header { border-bottom:1px solid #ee5bfc; }