#bdbaca Color
Color Codes | |
---|---|
Hex Code | #bdbaca |
RGB Code | rgb(189, 186, 202) |
HSL Code | hsl(251, 13%, 76%) |
#bdbaca Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(189, 186, 202); }
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(251, 13%, 76%); }
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 #bdbaca
RGB Code | Hex Code | Preview |
---|---|---|
rgb(189, 186, 202, 10%) | #bdbaca1a | |
rgb(189, 186, 202, 20%) | #bdbaca33 | |
rgb(189, 186, 202, 40%) | #bdbaca4C | |
rgb(189, 186, 202, 60%) | #bdbaca99 | |
rgb(189, 186, 202, 80%) | #bdbacaCC | |
rgb(189, 186, 202, 100%) | #bdbacaFF |
Saturated and desaturated colors of #bdbaca
HSL Code | Preview |
---|---|
hsl(251, 10%, 76%) | |
hsl(251, 20%, 76%) | |
hsl(251, 40%, 76%) | |
hsl(251, 60%, 76%) | |
hsl(251, 80%, 76%) | |
hsl(251, 100%, 76%) |
#bdbaca Color Usage In CSS
body { color: #bdbaca; } p { color: rgb(189, 186, 202); } header { border-bottom:1px solid #bdbaca; }