#e86d7b Color
Color Codes | |
---|---|
Hex Code | #e86d7b |
RGB Code | rgb(232, 109, 123) |
HSL Code | hsl(353, 73%, 67%) |
#e86d7b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(232, 109, 123); }
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(353, 73%, 67%); }
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 #e86d7b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(232, 109, 123, 10%) | #e86d7b1a | |
rgb(232, 109, 123, 20%) | #e86d7b33 | |
rgb(232, 109, 123, 40%) | #e86d7b4C | |
rgb(232, 109, 123, 60%) | #e86d7b99 | |
rgb(232, 109, 123, 80%) | #e86d7bCC | |
rgb(232, 109, 123, 100%) | #e86d7bFF |
Saturated and desaturated colors of #e86d7b
HSL Code | Preview |
---|---|
hsl(353, 10%, 67%) | |
hsl(353, 20%, 67%) | |
hsl(353, 40%, 67%) | |
hsl(353, 60%, 67%) | |
hsl(353, 80%, 67%) | |
hsl(353, 100%, 67%) |
#e86d7b Color Usage In CSS
body { color: #e86d7b; } p { color: rgb(232, 109, 123); } header { border-bottom:1px solid #e86d7b; }