#e544dc Color
Color Codes | |
---|---|
Hex Code | #e544dc |
RGB Code | rgb(229, 68, 220) |
HSL Code | hsl(303, 76%, 58%) |
#e544dc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(229, 68, 220); }
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(303, 76%, 58%); }
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 #e544dc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(229, 68, 220, 10%) | #e544dc1a | |
rgb(229, 68, 220, 20%) | #e544dc33 | |
rgb(229, 68, 220, 40%) | #e544dc4C | |
rgb(229, 68, 220, 60%) | #e544dc99 | |
rgb(229, 68, 220, 80%) | #e544dcCC | |
rgb(229, 68, 220, 100%) | #e544dcFF |
Saturated and desaturated colors of #e544dc
HSL Code | Preview |
---|---|
hsl(303, 10%, 58%) | |
hsl(303, 20%, 58%) | |
hsl(303, 40%, 58%) | |
hsl(303, 60%, 58%) | |
hsl(303, 80%, 58%) | |
hsl(303, 100%, 58%) |
#e544dc Color Usage In CSS
body { color: #e544dc; } p { color: rgb(229, 68, 220); } header { border-bottom:1px solid #e544dc; }