#e4a3df Color
Color Codes | |
---|---|
Hex Code | #e4a3df |
RGB Code | rgb(228, 163, 223) |
HSL Code | hsl(305, 55%, 77%) |
#e4a3df Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(228, 163, 223); }
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(305, 55%, 77%); }
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 #e4a3df
RGB Code | Hex Code | Preview |
---|---|---|
rgb(228, 163, 223, 10%) | #e4a3df1a | |
rgb(228, 163, 223, 20%) | #e4a3df33 | |
rgb(228, 163, 223, 40%) | #e4a3df4C | |
rgb(228, 163, 223, 60%) | #e4a3df99 | |
rgb(228, 163, 223, 80%) | #e4a3dfCC | |
rgb(228, 163, 223, 100%) | #e4a3dfFF |
Saturated and desaturated colors of #e4a3df
HSL Code | Preview |
---|---|
hsl(305, 10%, 77%) | |
hsl(305, 20%, 77%) | |
hsl(305, 40%, 77%) | |
hsl(305, 60%, 77%) | |
hsl(305, 80%, 77%) | |
hsl(305, 100%, 77%) |
#e4a3df Color Usage In CSS
body { color: #e4a3df; } p { color: rgb(228, 163, 223); } header { border-bottom:1px solid #e4a3df; }