#e9b5bc Color
Color Codes | |
---|---|
Hex Code | #e9b5bc |
RGB Code | rgb(233, 181, 188) |
HSL Code | hsl(352, 54%, 81%) |
#e9b5bc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(233, 181, 188); }
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(352, 54%, 81%); }
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 #e9b5bc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(233, 181, 188, 10%) | #e9b5bc1a | |
rgb(233, 181, 188, 20%) | #e9b5bc33 | |
rgb(233, 181, 188, 40%) | #e9b5bc4C | |
rgb(233, 181, 188, 60%) | #e9b5bc99 | |
rgb(233, 181, 188, 80%) | #e9b5bcCC | |
rgb(233, 181, 188, 100%) | #e9b5bcFF |
Saturated and desaturated colors of #e9b5bc
HSL Code | Preview |
---|---|
hsl(352, 10%, 81%) | |
hsl(352, 20%, 81%) | |
hsl(352, 40%, 81%) | |
hsl(352, 60%, 81%) | |
hsl(352, 80%, 81%) | |
hsl(352, 100%, 81%) |
#e9b5bc Color Usage In CSS
body { color: #e9b5bc; } p { color: rgb(233, 181, 188); } header { border-bottom:1px solid #e9b5bc; }