#eb0598 Color
Color Codes | |
---|---|
Hex Code | #eb0598 |
RGB Code | rgb(235, 05, 152) |
HSL Code | hsl(322, 96%, 47%) |
#eb0598 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(235, 05, 152); }
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(322, 96%, 47%); }
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 #eb0598
RGB Code | Hex Code | Preview |
---|---|---|
rgb(235, 05, 152, 10%) | #eb05981a | |
rgb(235, 05, 152, 20%) | #eb059833 | |
rgb(235, 05, 152, 40%) | #eb05984C | |
rgb(235, 05, 152, 60%) | #eb059899 | |
rgb(235, 05, 152, 80%) | #eb0598CC | |
rgb(235, 05, 152, 100%) | #eb0598FF |
Saturated and desaturated colors of #eb0598
HSL Code | Preview |
---|---|
hsl(322, 10%, 47%) | |
hsl(322, 20%, 47%) | |
hsl(322, 40%, 47%) | |
hsl(322, 60%, 47%) | |
hsl(322, 80%, 47%) | |
hsl(322, 100%, 47%) |
#eb0598 Color Usage In CSS
body { color: #eb0598; } p { color: rgb(235, 05, 152); } header { border-bottom:1px solid #eb0598; }