#b7a6b3 Color
Color Codes | |
---|---|
Hex Code | #b7a6b3 |
RGB Code | rgb(183, 166, 179) |
HSL Code | hsl(314, 11%, 68%) |
#b7a6b3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(183, 166, 179); }
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(314, 11%, 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 #b7a6b3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(183, 166, 179, 10%) | #b7a6b31a | |
rgb(183, 166, 179, 20%) | #b7a6b333 | |
rgb(183, 166, 179, 40%) | #b7a6b34C | |
rgb(183, 166, 179, 60%) | #b7a6b399 | |
rgb(183, 166, 179, 80%) | #b7a6b3CC | |
rgb(183, 166, 179, 100%) | #b7a6b3FF |
Saturated and desaturated colors of #b7a6b3
HSL Code | Preview |
---|---|
hsl(314, 10%, 68%) | |
hsl(314, 20%, 68%) | |
hsl(314, 40%, 68%) | |
hsl(314, 60%, 68%) | |
hsl(314, 80%, 68%) | |
hsl(314, 100%, 68%) |
#b7a6b3 Color Usage In CSS
body { color: #b7a6b3; } p { color: rgb(183, 166, 179); } header { border-bottom:1px solid #b7a6b3; }