#e6b096 Color
Color Codes | |
---|---|
Hex Code | #e6b096 |
RGB Code | rgb(230, 176, 150) |
HSL Code | hsl(20, 62%, 75%) |
#e6b096 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(230, 176, 150); }
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(20, 62%, 75%); }
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 #e6b096
RGB Code | Hex Code | Preview |
---|---|---|
rgb(230, 176, 150, 10%) | #e6b0961a | |
rgb(230, 176, 150, 20%) | #e6b09633 | |
rgb(230, 176, 150, 40%) | #e6b0964C | |
rgb(230, 176, 150, 60%) | #e6b09699 | |
rgb(230, 176, 150, 80%) | #e6b096CC | |
rgb(230, 176, 150, 100%) | #e6b096FF |
Saturated and desaturated colors of #e6b096
HSL Code | Preview |
---|---|
hsl(20, 10%, 75%) | |
hsl(20, 20%, 75%) | |
hsl(20, 40%, 75%) | |
hsl(20, 60%, 75%) | |
hsl(20, 80%, 75%) | |
hsl(20, 100%, 75%) |
#e6b096 Color Usage In CSS
body { color: #e6b096; } p { color: rgb(230, 176, 150); } header { border-bottom:1px solid #e6b096; }