#bbe9fb Color
Color Codes | |
---|---|
Hex Code | #bbe9fb |
RGB Code | rgb(187, 233, 251) |
HSL Code | hsl(197, 89%, 86%) |
#bbe9fb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(187, 233, 251); }
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(197, 89%, 86%); }
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 #bbe9fb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(187, 233, 251, 10%) | #bbe9fb1a | |
rgb(187, 233, 251, 20%) | #bbe9fb33 | |
rgb(187, 233, 251, 40%) | #bbe9fb4C | |
rgb(187, 233, 251, 60%) | #bbe9fb99 | |
rgb(187, 233, 251, 80%) | #bbe9fbCC | |
rgb(187, 233, 251, 100%) | #bbe9fbFF |
Saturated and desaturated colors of #bbe9fb
HSL Code | Preview |
---|---|
hsl(197, 10%, 86%) | |
hsl(197, 20%, 86%) | |
hsl(197, 40%, 86%) | |
hsl(197, 60%, 86%) | |
hsl(197, 80%, 86%) | |
hsl(197, 100%, 86%) |
#bbe9fb Color Usage In CSS
body { color: #bbe9fb; } p { color: rgb(187, 233, 251); } header { border-bottom:1px solid #bbe9fb; }