#b9c6e6 Color
Color Codes | |
---|---|
Hex Code | #b9c6e6 |
RGB Code | rgb(185, 198, 230) |
HSL Code | hsl(223, 47%, 81%) |
#b9c6e6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(185, 198, 230); }
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(223, 47%, 81%); }
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 #b9c6e6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(185, 198, 230, 10%) | #b9c6e61a | |
rgb(185, 198, 230, 20%) | #b9c6e633 | |
rgb(185, 198, 230, 40%) | #b9c6e64C | |
rgb(185, 198, 230, 60%) | #b9c6e699 | |
rgb(185, 198, 230, 80%) | #b9c6e6CC | |
rgb(185, 198, 230, 100%) | #b9c6e6FF |
Saturated and desaturated colors of #b9c6e6
HSL Code | Preview |
---|---|
hsl(223, 10%, 81%) | |
hsl(223, 20%, 81%) | |
hsl(223, 40%, 81%) | |
hsl(223, 60%, 81%) | |
hsl(223, 80%, 81%) | |
hsl(223, 100%, 81%) |
#b9c6e6 Color Usage In CSS
body { color: #b9c6e6; } p { color: rgb(185, 198, 230); } header { border-bottom:1px solid #b9c6e6; }