#b0ac9c Color
Color Codes | |
---|---|
Hex Code | #b0ac9c |
RGB Code | rgb(176, 172, 156) |
HSL Code | hsl(48, 11%, 65%) |
#b0ac9c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 172, 156); }
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(48, 11%, 65%); }
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 #b0ac9c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 172, 156, 10%) | #b0ac9c1a | |
rgb(176, 172, 156, 20%) | #b0ac9c33 | |
rgb(176, 172, 156, 40%) | #b0ac9c4C | |
rgb(176, 172, 156, 60%) | #b0ac9c99 | |
rgb(176, 172, 156, 80%) | #b0ac9cCC | |
rgb(176, 172, 156, 100%) | #b0ac9cFF |
Saturated and desaturated colors of #b0ac9c
HSL Code | Preview |
---|---|
hsl(48, 10%, 65%) | |
hsl(48, 20%, 65%) | |
hsl(48, 40%, 65%) | |
hsl(48, 60%, 65%) | |
hsl(48, 80%, 65%) | |
hsl(48, 100%, 65%) |
#b0ac9c Color Usage In CSS
body { color: #b0ac9c; } p { color: rgb(176, 172, 156); } header { border-bottom:1px solid #b0ac9c; }