#ebac88 Color
Color Codes | |
---|---|
Hex Code | #ebac88 |
RGB Code | rgb(235, 172, 136) |
HSL Code | hsl(22, 71%, 73%) |
#ebac88 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(235, 172, 136); }
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(22, 71%, 73%); }
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 #ebac88
RGB Code | Hex Code | Preview |
---|---|---|
rgb(235, 172, 136, 10%) | #ebac881a | |
rgb(235, 172, 136, 20%) | #ebac8833 | |
rgb(235, 172, 136, 40%) | #ebac884C | |
rgb(235, 172, 136, 60%) | #ebac8899 | |
rgb(235, 172, 136, 80%) | #ebac88CC | |
rgb(235, 172, 136, 100%) | #ebac88FF |
Saturated and desaturated colors of #ebac88
HSL Code | Preview |
---|---|
hsl(22, 10%, 73%) | |
hsl(22, 20%, 73%) | |
hsl(22, 40%, 73%) | |
hsl(22, 60%, 73%) | |
hsl(22, 80%, 73%) | |
hsl(22, 100%, 73%) |
#ebac88 Color Usage In CSS
body { color: #ebac88; } p { color: rgb(235, 172, 136); } header { border-bottom:1px solid #ebac88; }