#bdbae7 Color
Color Codes | |
---|---|
Hex Code | #bdbae7 |
RGB Code | rgb(189, 186, 231) |
HSL Code | hsl(244, 48%, 82%) |
#bdbae7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(189, 186, 231); }
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(244, 48%, 82%); }
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 #bdbae7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(189, 186, 231, 10%) | #bdbae71a | |
rgb(189, 186, 231, 20%) | #bdbae733 | |
rgb(189, 186, 231, 40%) | #bdbae74C | |
rgb(189, 186, 231, 60%) | #bdbae799 | |
rgb(189, 186, 231, 80%) | #bdbae7CC | |
rgb(189, 186, 231, 100%) | #bdbae7FF |
Saturated and desaturated colors of #bdbae7
HSL Code | Preview |
---|---|
hsl(244, 10%, 82%) | |
hsl(244, 20%, 82%) | |
hsl(244, 40%, 82%) | |
hsl(244, 60%, 82%) | |
hsl(244, 80%, 82%) | |
hsl(244, 100%, 82%) |
#bdbae7 Color Usage In CSS
body { color: #bdbae7; } p { color: rgb(189, 186, 231); } header { border-bottom:1px solid #bdbae7; }