#bbd6f8 Color
Color Codes | |
---|---|
Hex Code | #bbd6f8 |
RGB Code | rgb(187, 214, 248) |
HSL Code | hsl(213, 81%, 85%) |
#bbd6f8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(187, 214, 248); }
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(213, 81%, 85%); }
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 #bbd6f8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(187, 214, 248, 10%) | #bbd6f81a | |
rgb(187, 214, 248, 20%) | #bbd6f833 | |
rgb(187, 214, 248, 40%) | #bbd6f84C | |
rgb(187, 214, 248, 60%) | #bbd6f899 | |
rgb(187, 214, 248, 80%) | #bbd6f8CC | |
rgb(187, 214, 248, 100%) | #bbd6f8FF |
Saturated and desaturated colors of #bbd6f8
HSL Code | Preview |
---|---|
hsl(213, 10%, 85%) | |
hsl(213, 20%, 85%) | |
hsl(213, 40%, 85%) | |
hsl(213, 60%, 85%) | |
hsl(213, 80%, 85%) | |
hsl(213, 100%, 85%) |
#bbd6f8 Color Usage In CSS
body { color: #bbd6f8; } p { color: rgb(187, 214, 248); } header { border-bottom:1px solid #bbd6f8; }