#e163d2 Color
Color Codes | |
---|---|
Hex Code | #e163d2 |
RGB Code | rgb(225, 99, 210) |
HSL Code | hsl(307, 68%, 64%) |
#e163d2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(225, 99, 210); }
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, 68%, 64%); }
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 #e163d2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(225, 99, 210, 10%) | #e163d21a | |
rgb(225, 99, 210, 20%) | #e163d233 | |
rgb(225, 99, 210, 40%) | #e163d24C | |
rgb(225, 99, 210, 60%) | #e163d299 | |
rgb(225, 99, 210, 80%) | #e163d2CC | |
rgb(225, 99, 210, 100%) | #e163d2FF |
Saturated and desaturated colors of #e163d2
HSL Code | Preview |
---|---|
hsl(307, 10%, 64%) | |
hsl(307, 20%, 64%) | |
hsl(307, 40%, 64%) | |
hsl(307, 60%, 64%) | |
hsl(307, 80%, 64%) | |
hsl(307, 100%, 64%) |
#e163d2 Color Usage In CSS
body { color: #e163d2; } p { color: rgb(225, 99, 210); } header { border-bottom:1px solid #e163d2; }