#e153a2 Color
Color Codes | |
---|---|
Hex Code | #e153a2 |
RGB Code | rgb(225, 83, 162) |
HSL Code | hsl(327, 70%, 60%) |
#e153a2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(225, 83, 162); }
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(327, 70%, 60%); }
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 #e153a2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(225, 83, 162, 10%) | #e153a21a | |
rgb(225, 83, 162, 20%) | #e153a233 | |
rgb(225, 83, 162, 40%) | #e153a24C | |
rgb(225, 83, 162, 60%) | #e153a299 | |
rgb(225, 83, 162, 80%) | #e153a2CC | |
rgb(225, 83, 162, 100%) | #e153a2FF |
Saturated and desaturated colors of #e153a2
HSL Code | Preview |
---|---|
hsl(327, 10%, 60%) | |
hsl(327, 20%, 60%) | |
hsl(327, 40%, 60%) | |
hsl(327, 60%, 60%) | |
hsl(327, 80%, 60%) | |
hsl(327, 100%, 60%) |
#e153a2 Color Usage In CSS
body { color: #e153a2; } p { color: rgb(225, 83, 162); } header { border-bottom:1px solid #e153a2; }