#eb96c8 Color
Color Codes | |
---|---|
Hex Code | #eb96c8 |
RGB Code | rgb(235, 150, 200) |
HSL Code | hsl(325, 68%, 75%) |
#eb96c8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(235, 150, 200); }
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(325, 68%, 75%); }
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 #eb96c8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(235, 150, 200, 10%) | #eb96c81a | |
rgb(235, 150, 200, 20%) | #eb96c833 | |
rgb(235, 150, 200, 40%) | #eb96c84C | |
rgb(235, 150, 200, 60%) | #eb96c899 | |
rgb(235, 150, 200, 80%) | #eb96c8CC | |
rgb(235, 150, 200, 100%) | #eb96c8FF |
Saturated and desaturated colors of #eb96c8
HSL Code | Preview |
---|---|
hsl(325, 10%, 75%) | |
hsl(325, 20%, 75%) | |
hsl(325, 40%, 75%) | |
hsl(325, 60%, 75%) | |
hsl(325, 80%, 75%) | |
hsl(325, 100%, 75%) |
#eb96c8 Color Usage In CSS
body { color: #eb96c8; } p { color: rgb(235, 150, 200); } header { border-bottom:1px solid #eb96c8; }