#e9a7af Color
Color Codes | |
---|---|
Hex Code | #e9a7af |
RGB Code | rgb(233, 167, 175) |
HSL Code | hsl(353, 60%, 78%) |
#e9a7af Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(233, 167, 175); }
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, 60%, 78%); }
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 #e9a7af
RGB Code | Hex Code | Preview |
---|---|---|
rgb(233, 167, 175, 10%) | #e9a7af1a | |
rgb(233, 167, 175, 20%) | #e9a7af33 | |
rgb(233, 167, 175, 40%) | #e9a7af4C | |
rgb(233, 167, 175, 60%) | #e9a7af99 | |
rgb(233, 167, 175, 80%) | #e9a7afCC | |
rgb(233, 167, 175, 100%) | #e9a7afFF |
Saturated and desaturated colors of #e9a7af
HSL Code | Preview |
---|---|
hsl(353, 10%, 78%) | |
hsl(353, 20%, 78%) | |
hsl(353, 40%, 78%) | |
hsl(353, 60%, 78%) | |
hsl(353, 80%, 78%) | |
hsl(353, 100%, 78%) |
#e9a7af Color Usage In CSS
body { color: #e9a7af; } p { color: rgb(233, 167, 175); } header { border-bottom:1px solid #e9a7af; }