#eb5fda Color
Color Codes | |
---|---|
Hex Code | #eb5fda |
RGB Code | rgb(235, 95, 218) |
HSL Code | hsl(307, 78%, 65%) |
#eb5fda Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(235, 95, 218); }
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, 78%, 65%); }
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 #eb5fda
RGB Code | Hex Code | Preview |
---|---|---|
rgb(235, 95, 218, 10%) | #eb5fda1a | |
rgb(235, 95, 218, 20%) | #eb5fda33 | |
rgb(235, 95, 218, 40%) | #eb5fda4C | |
rgb(235, 95, 218, 60%) | #eb5fda99 | |
rgb(235, 95, 218, 80%) | #eb5fdaCC | |
rgb(235, 95, 218, 100%) | #eb5fdaFF |
Saturated and desaturated colors of #eb5fda
HSL Code | Preview |
---|---|
hsl(307, 10%, 65%) | |
hsl(307, 20%, 65%) | |
hsl(307, 40%, 65%) | |
hsl(307, 60%, 65%) | |
hsl(307, 80%, 65%) | |
hsl(307, 100%, 65%) |
#eb5fda Color Usage In CSS
body { color: #eb5fda; } p { color: rgb(235, 95, 218); } header { border-bottom:1px solid #eb5fda; }