#e28dca Color
Color Codes | |
---|---|
Hex Code | #e28dca |
RGB Code | rgb(226, 141, 202) |
HSL Code | hsl(317, 59%, 72%) |
#e28dca Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(226, 141, 202); }
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(317, 59%, 72%); }
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 #e28dca
RGB Code | Hex Code | Preview |
---|---|---|
rgb(226, 141, 202, 10%) | #e28dca1a | |
rgb(226, 141, 202, 20%) | #e28dca33 | |
rgb(226, 141, 202, 40%) | #e28dca4C | |
rgb(226, 141, 202, 60%) | #e28dca99 | |
rgb(226, 141, 202, 80%) | #e28dcaCC | |
rgb(226, 141, 202, 100%) | #e28dcaFF |
Saturated and desaturated colors of #e28dca
HSL Code | Preview |
---|---|
hsl(317, 10%, 72%) | |
hsl(317, 20%, 72%) | |
hsl(317, 40%, 72%) | |
hsl(317, 60%, 72%) | |
hsl(317, 80%, 72%) | |
hsl(317, 100%, 72%) |
#e28dca Color Usage In CSS
body { color: #e28dca; } p { color: rgb(226, 141, 202); } header { border-bottom:1px solid #e28dca; }