#d63ec5 Color
Color Codes | |
---|---|
Hex Code | #d63ec5 |
RGB Code | rgb(214, 62, 197) |
HSL Code | hsl(307, 65%, 54%) |
#d63ec5 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 62, 197); }
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, 65%, 54%); }
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 #d63ec5
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 62, 197, 10%) | #d63ec51a | |
rgb(214, 62, 197, 20%) | #d63ec533 | |
rgb(214, 62, 197, 40%) | #d63ec54C | |
rgb(214, 62, 197, 60%) | #d63ec599 | |
rgb(214, 62, 197, 80%) | #d63ec5CC | |
rgb(214, 62, 197, 100%) | #d63ec5FF |
Saturated and desaturated colors of #d63ec5
HSL Code | Preview |
---|---|
hsl(307, 10%, 54%) | |
hsl(307, 20%, 54%) | |
hsl(307, 40%, 54%) | |
hsl(307, 60%, 54%) | |
hsl(307, 80%, 54%) | |
hsl(307, 100%, 54%) |
#d63ec5 Color Usage In CSS
body { color: #d63ec5; } p { color: rgb(214, 62, 197); } header { border-bottom:1px solid #d63ec5; }