#b4caac Color
Color Codes | |
---|---|
Hex Code | #b4caac |
RGB Code | rgb(180, 202, 172) |
HSL Code | hsl(104, 22%, 73%) |
#b4caac Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(180, 202, 172); }
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(104, 22%, 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 #b4caac
RGB Code | Hex Code | Preview |
---|---|---|
rgb(180, 202, 172, 10%) | #b4caac1a | |
rgb(180, 202, 172, 20%) | #b4caac33 | |
rgb(180, 202, 172, 40%) | #b4caac4C | |
rgb(180, 202, 172, 60%) | #b4caac99 | |
rgb(180, 202, 172, 80%) | #b4caacCC | |
rgb(180, 202, 172, 100%) | #b4caacFF |
Saturated and desaturated colors of #b4caac
HSL Code | Preview |
---|---|
hsl(104, 10%, 73%) | |
hsl(104, 20%, 73%) | |
hsl(104, 40%, 73%) | |
hsl(104, 60%, 73%) | |
hsl(104, 80%, 73%) | |
hsl(104, 100%, 73%) |
#b4caac Color Usage In CSS
body { color: #b4caac; } p { color: rgb(180, 202, 172); } header { border-bottom:1px solid #b4caac; }