#e648ab Color
Color Codes | |
---|---|
Hex Code | #e648ab |
RGB Code | rgb(230, 72, 171) |
HSL Code | hsl(322, 76%, 59%) |
#e648ab Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 72, 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(322, 76%, 59%); }
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 #e648ab
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 72, 171, 10%) | #e648ab1a | |
rgb(230, 72, 171, 20%) | #e648ab33 | |
rgb(230, 72, 171, 40%) | #e648ab4C | |
rgb(230, 72, 171, 60%) | #e648ab99 | |
rgb(230, 72, 171, 80%) | #e648abCC | |
rgb(230, 72, 171, 100%) | #e648abFF |
Saturated and desaturated colors of #e648ab
HSL Code | Preview |
---|---|
hsl(322, 10%, 59%) | |
hsl(322, 20%, 59%) | |
hsl(322, 40%, 59%) | |
hsl(322, 60%, 59%) | |
hsl(322, 80%, 59%) | |
hsl(322, 100%, 59%) |
#e648ab Color Usage In CSS
body { color: #e648ab; } p { color: rgb(230, 72, 171); } header { border-bottom:1px solid #e648ab; }