#ea90ca Color
Color Codes | |
---|---|
Hex Code | #ea90ca |
RGB Code | rgb(234, 144, 202) |
HSL Code | hsl(321, 68%, 74%) |
#ea90ca Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(234, 144, 202); }
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(321, 68%, 74%); }
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 #ea90ca
RGB Code | Hex Code | Preview |
---|---|---|
rgb(234, 144, 202, 10%) | #ea90ca1a | |
rgb(234, 144, 202, 20%) | #ea90ca33 | |
rgb(234, 144, 202, 40%) | #ea90ca4C | |
rgb(234, 144, 202, 60%) | #ea90ca99 | |
rgb(234, 144, 202, 80%) | #ea90caCC | |
rgb(234, 144, 202, 100%) | #ea90caFF |
Saturated and desaturated colors of #ea90ca
HSL Code | Preview |
---|---|
hsl(321, 10%, 74%) | |
hsl(321, 20%, 74%) | |
hsl(321, 40%, 74%) | |
hsl(321, 60%, 74%) | |
hsl(321, 80%, 74%) | |
hsl(321, 100%, 74%) |
#ea90ca Color Usage In CSS
body { color: #ea90ca; } p { color: rgb(234, 144, 202); } header { border-bottom:1px solid #ea90ca; }