#eaa4e2 Color
Color Codes | |
---|---|
Hex Code | #eaa4e2 |
RGB Code | rgb(234, 164, 226) |
HSL Code | hsl(307, 63%, 78%) |
#eaa4e2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(234, 164, 226); }
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(307, 63%, 78%); }
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 #eaa4e2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(234, 164, 226, 10%) | #eaa4e21a | |
rgb(234, 164, 226, 20%) | #eaa4e233 | |
rgb(234, 164, 226, 40%) | #eaa4e24C | |
rgb(234, 164, 226, 60%) | #eaa4e299 | |
rgb(234, 164, 226, 80%) | #eaa4e2CC | |
rgb(234, 164, 226, 100%) | #eaa4e2FF |
Saturated and desaturated colors of #eaa4e2
HSL Code | Preview |
---|---|
hsl(307, 10%, 78%) | |
hsl(307, 20%, 78%) | |
hsl(307, 40%, 78%) | |
hsl(307, 60%, 78%) | |
hsl(307, 80%, 78%) | |
hsl(307, 100%, 78%) |
#eaa4e2 Color Usage In CSS
body { color: #eaa4e2; } p { color: rgb(234, 164, 226); } header { border-bottom:1px solid #eaa4e2; }