#ed657a Color
Color Codes | |
---|---|
Hex Code | #ed657a |
RGB Code | rgb(237, 101, 122) |
HSL Code | hsl(351, 79%, 66%) |
#ed657a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(237, 101, 122); }
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(351, 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 #ed657a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(237, 101, 122, 10%) | #ed657a1a | |
rgb(237, 101, 122, 20%) | #ed657a33 | |
rgb(237, 101, 122, 40%) | #ed657a4C | |
rgb(237, 101, 122, 60%) | #ed657a99 | |
rgb(237, 101, 122, 80%) | #ed657aCC | |
rgb(237, 101, 122, 100%) | #ed657aFF |
Saturated and desaturated colors of #ed657a
HSL Code | Preview |
---|---|
hsl(351, 10%, 66%) | |
hsl(351, 20%, 66%) | |
hsl(351, 40%, 66%) | |
hsl(351, 60%, 66%) | |
hsl(351, 80%, 66%) | |
hsl(351, 100%, 66%) |
#ed657a Color Usage In CSS
body { color: #ed657a; } p { color: rgb(237, 101, 122); } header { border-bottom:1px solid #ed657a; }