#ee0dc4 Color
Color Codes | |
---|---|
Hex Code | #ee0dc4 |
RGB Code | rgb(238, 13, 196) |
HSL Code | hsl(311, 90%, 49%) |
#ee0dc4 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(238, 13, 196); }
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(311, 90%, 49%); }
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 #ee0dc4
RGB Code | Hex Code | Preview |
---|---|---|
rgb(238, 13, 196, 10%) | #ee0dc41a | |
rgb(238, 13, 196, 20%) | #ee0dc433 | |
rgb(238, 13, 196, 40%) | #ee0dc44C | |
rgb(238, 13, 196, 60%) | #ee0dc499 | |
rgb(238, 13, 196, 80%) | #ee0dc4CC | |
rgb(238, 13, 196, 100%) | #ee0dc4FF |
Saturated and desaturated colors of #ee0dc4
HSL Code | Preview |
---|---|
hsl(311, 10%, 49%) | |
hsl(311, 20%, 49%) | |
hsl(311, 40%, 49%) | |
hsl(311, 60%, 49%) | |
hsl(311, 80%, 49%) | |
hsl(311, 100%, 49%) |
#ee0dc4 Color Usage In CSS
body { color: #ee0dc4; } p { color: rgb(238, 13, 196); } header { border-bottom:1px solid #ee0dc4; }