#d619ed Color
Color Codes | |
---|---|
Hex Code | #d619ed |
RGB Code | rgb(214, 25, 237) |
HSL Code | hsl(293, 85%, 51%) |
#d619ed Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 25, 237); }
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(293, 85%, 51%); }
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 #d619ed
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 25, 237, 10%) | #d619ed1a | |
rgb(214, 25, 237, 20%) | #d619ed33 | |
rgb(214, 25, 237, 40%) | #d619ed4C | |
rgb(214, 25, 237, 60%) | #d619ed99 | |
rgb(214, 25, 237, 80%) | #d619edCC | |
rgb(214, 25, 237, 100%) | #d619edFF |
Saturated and desaturated colors of #d619ed
HSL Code | Preview |
---|---|
hsl(293, 10%, 51%) | |
hsl(293, 20%, 51%) | |
hsl(293, 40%, 51%) | |
hsl(293, 60%, 51%) | |
hsl(293, 80%, 51%) | |
hsl(293, 100%, 51%) |
#d619ed Color Usage In CSS
body { color: #d619ed; } p { color: rgb(214, 25, 237); } header { border-bottom:1px solid #d619ed; }