#e620c1 Color
Color Codes | |
---|---|
Hex Code | #e620c1 |
RGB Code | rgb(230, 32, 193) |
HSL Code | hsl(311, 80%, 51%) |
#e620c1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 32, 193); }
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(311, 80%, 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 #e620c1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 32, 193, 10%) | #e620c11a | |
rgb(230, 32, 193, 20%) | #e620c133 | |
rgb(230, 32, 193, 40%) | #e620c14C | |
rgb(230, 32, 193, 60%) | #e620c199 | |
rgb(230, 32, 193, 80%) | #e620c1CC | |
rgb(230, 32, 193, 100%) | #e620c1FF |
Saturated and desaturated colors of #e620c1
HSL Code | Preview |
---|---|
hsl(311, 10%, 51%) | |
hsl(311, 20%, 51%) | |
hsl(311, 40%, 51%) | |
hsl(311, 60%, 51%) | |
hsl(311, 80%, 51%) | |
hsl(311, 100%, 51%) |
#e620c1 Color Usage In CSS
body { color: #e620c1; } p { color: rgb(230, 32, 193); } header { border-bottom:1px solid #e620c1; }