#ed5592 Color
Color Codes | |
---|---|
Hex Code | #ed5592 |
RGB Code | rgb(237, 85, 146) |
HSL Code | hsl(336, 81%, 63%) |
#ed5592 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(237, 85, 146); }
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(336, 81%, 63%); }
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 #ed5592
RGB Code | Hex Code | Preview |
---|---|---|
rgb(237, 85, 146, 10%) | #ed55921a | |
rgb(237, 85, 146, 20%) | #ed559233 | |
rgb(237, 85, 146, 40%) | #ed55924C | |
rgb(237, 85, 146, 60%) | #ed559299 | |
rgb(237, 85, 146, 80%) | #ed5592CC | |
rgb(237, 85, 146, 100%) | #ed5592FF |
Saturated and desaturated colors of #ed5592
HSL Code | Preview |
---|---|
hsl(336, 10%, 63%) | |
hsl(336, 20%, 63%) | |
hsl(336, 40%, 63%) | |
hsl(336, 60%, 63%) | |
hsl(336, 80%, 63%) | |
hsl(336, 100%, 63%) |
#ed5592 Color Usage In CSS
body { color: #ed5592; } p { color: rgb(237, 85, 146); } header { border-bottom:1px solid #ed5592; }