#b6bad3 Color
Color Codes | |
---|---|
Hex Code | #b6bad3 |
RGB Code | rgb(182, 186, 211) |
HSL Code | hsl(232, 25%, 77%) |
#b6bad3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(182, 186, 211); }
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(232, 25%, 77%); }
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 #b6bad3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(182, 186, 211, 10%) | #b6bad31a | |
rgb(182, 186, 211, 20%) | #b6bad333 | |
rgb(182, 186, 211, 40%) | #b6bad34C | |
rgb(182, 186, 211, 60%) | #b6bad399 | |
rgb(182, 186, 211, 80%) | #b6bad3CC | |
rgb(182, 186, 211, 100%) | #b6bad3FF |
Saturated and desaturated colors of #b6bad3
HSL Code | Preview |
---|---|
hsl(232, 10%, 77%) | |
hsl(232, 20%, 77%) | |
hsl(232, 40%, 77%) | |
hsl(232, 60%, 77%) | |
hsl(232, 80%, 77%) | |
hsl(232, 100%, 77%) |
#b6bad3 Color Usage In CSS
body { color: #b6bad3; } p { color: rgb(182, 186, 211); } header { border-bottom:1px solid #b6bad3; }