#bfc6af Color
Color Codes | |
---|---|
Hex Code | #bfc6af |
RGB Code | rgb(191, 198, 175) |
HSL Code | hsl(78, 17%, 73%) |
#bfc6af Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(191, 198, 175); }
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(78, 17%, 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 #bfc6af
RGB Code | Hex Code | Preview |
---|---|---|
rgb(191, 198, 175, 10%) | #bfc6af1a | |
rgb(191, 198, 175, 20%) | #bfc6af33 | |
rgb(191, 198, 175, 40%) | #bfc6af4C | |
rgb(191, 198, 175, 60%) | #bfc6af99 | |
rgb(191, 198, 175, 80%) | #bfc6afCC | |
rgb(191, 198, 175, 100%) | #bfc6afFF |
Saturated and desaturated colors of #bfc6af
HSL Code | Preview |
---|---|
hsl(78, 10%, 73%) | |
hsl(78, 20%, 73%) | |
hsl(78, 40%, 73%) | |
hsl(78, 60%, 73%) | |
hsl(78, 80%, 73%) | |
hsl(78, 100%, 73%) |
#bfc6af Color Usage In CSS
body { color: #bfc6af; } p { color: rgb(191, 198, 175); } header { border-bottom:1px solid #bfc6af; }