#e9b175 Color
Color Codes | |
---|---|
Hex Code | #e9b175 |
RGB Code | rgb(233, 177, 117) |
HSL Code | hsl(31, 73%, 69%) |
#e9b175 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(233, 177, 117); }
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(31, 73%, 69%); }
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 #e9b175
RGB Code | Hex Code | Preview |
---|---|---|
rgb(233, 177, 117, 10%) | #e9b1751a | |
rgb(233, 177, 117, 20%) | #e9b17533 | |
rgb(233, 177, 117, 40%) | #e9b1754C | |
rgb(233, 177, 117, 60%) | #e9b17599 | |
rgb(233, 177, 117, 80%) | #e9b175CC | |
rgb(233, 177, 117, 100%) | #e9b175FF |
Saturated and desaturated colors of #e9b175
HSL Code | Preview |
---|---|
hsl(31, 10%, 69%) | |
hsl(31, 20%, 69%) | |
hsl(31, 40%, 69%) | |
hsl(31, 60%, 69%) | |
hsl(31, 80%, 69%) | |
hsl(31, 100%, 69%) |
#e9b175 Color Usage In CSS
body { color: #e9b175; } p { color: rgb(233, 177, 117); } header { border-bottom:1px solid #e9b175; }