#ed65ab Color
Color Codes | |
---|---|
Hex Code | #ed65ab |
RGB Code | rgb(237, 101, 171) |
HSL Code | hsl(329, 79%, 66%) |
#ed65ab Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(237, 101, 171); }
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(329, 79%, 66%); }
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 #ed65ab
RGB Code | Hex Code | Preview |
---|---|---|
rgb(237, 101, 171, 10%) | #ed65ab1a | |
rgb(237, 101, 171, 20%) | #ed65ab33 | |
rgb(237, 101, 171, 40%) | #ed65ab4C | |
rgb(237, 101, 171, 60%) | #ed65ab99 | |
rgb(237, 101, 171, 80%) | #ed65abCC | |
rgb(237, 101, 171, 100%) | #ed65abFF |
Saturated and desaturated colors of #ed65ab
HSL Code | Preview |
---|---|
hsl(329, 10%, 66%) | |
hsl(329, 20%, 66%) | |
hsl(329, 40%, 66%) | |
hsl(329, 60%, 66%) | |
hsl(329, 80%, 66%) | |
hsl(329, 100%, 66%) |
#ed65ab Color Usage In CSS
body { color: #ed65ab; } p { color: rgb(237, 101, 171); } header { border-bottom:1px solid #ed65ab; }