#b6aca7 Color
Color Codes | |
---|---|
Hex Code | #b6aca7 |
RGB Code | rgb(182, 172, 167) |
HSL Code | hsl(20, 9%, 68%) |
#b6aca7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(182, 172, 167); }
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, 9%, 68%); }
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 #b6aca7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(182, 172, 167, 10%) | #b6aca71a | |
rgb(182, 172, 167, 20%) | #b6aca733 | |
rgb(182, 172, 167, 40%) | #b6aca74C | |
rgb(182, 172, 167, 60%) | #b6aca799 | |
rgb(182, 172, 167, 80%) | #b6aca7CC | |
rgb(182, 172, 167, 100%) | #b6aca7FF |
Saturated and desaturated colors of #b6aca7
HSL Code | Preview |
---|---|
hsl(20, 10%, 68%) | |
hsl(20, 20%, 68%) | |
hsl(20, 40%, 68%) | |
hsl(20, 60%, 68%) | |
hsl(20, 80%, 68%) | |
hsl(20, 100%, 68%) |
#b6aca7 Color Usage In CSS
body { color: #b6aca7; } p { color: rgb(182, 172, 167); } header { border-bottom:1px solid #b6aca7; }