#b1c5ca Color
Color Codes | |
---|---|
Hex Code | #b1c5ca |
RGB Code | rgb(177, 197, 202) |
HSL Code | hsl(192, 19%, 74%) |
#b1c5ca Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(177, 197, 202); }
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(192, 19%, 74%); }
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 #b1c5ca
RGB Code | Hex Code | Preview |
---|---|---|
rgb(177, 197, 202, 10%) | #b1c5ca1a | |
rgb(177, 197, 202, 20%) | #b1c5ca33 | |
rgb(177, 197, 202, 40%) | #b1c5ca4C | |
rgb(177, 197, 202, 60%) | #b1c5ca99 | |
rgb(177, 197, 202, 80%) | #b1c5caCC | |
rgb(177, 197, 202, 100%) | #b1c5caFF |
Saturated and desaturated colors of #b1c5ca
HSL Code | Preview |
---|---|
hsl(192, 10%, 74%) | |
hsl(192, 20%, 74%) | |
hsl(192, 40%, 74%) | |
hsl(192, 60%, 74%) | |
hsl(192, 80%, 74%) | |
hsl(192, 100%, 74%) |
#b1c5ca Color Usage In CSS
body { color: #b1c5ca; } p { color: rgb(177, 197, 202); } header { border-bottom:1px solid #b1c5ca; }