#b1d3dc Color
Color Codes | |
---|---|
Hex Code | #b1d3dc |
RGB Code | rgb(177, 211, 220) |
HSL Code | hsl(193, 38%, 78%) |
#b1d3dc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(177, 211, 220); }
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(193, 38%, 78%); }
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 #b1d3dc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(177, 211, 220, 10%) | #b1d3dc1a | |
rgb(177, 211, 220, 20%) | #b1d3dc33 | |
rgb(177, 211, 220, 40%) | #b1d3dc4C | |
rgb(177, 211, 220, 60%) | #b1d3dc99 | |
rgb(177, 211, 220, 80%) | #b1d3dcCC | |
rgb(177, 211, 220, 100%) | #b1d3dcFF |
Saturated and desaturated colors of #b1d3dc
HSL Code | Preview |
---|---|
hsl(193, 10%, 78%) | |
hsl(193, 20%, 78%) | |
hsl(193, 40%, 78%) | |
hsl(193, 60%, 78%) | |
hsl(193, 80%, 78%) | |
hsl(193, 100%, 78%) |
#b1d3dc Color Usage In CSS
body { color: #b1d3dc; } p { color: rgb(177, 211, 220); } header { border-bottom:1px solid #b1d3dc; }