#c9d9eb Color
Color Codes | |
---|---|
Hex Code | #c9d9eb |
RGB Code | rgb(201, 217, 235) |
HSL Code | hsl(212, 46%, 85%) |
#c9d9eb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(201, 217, 235); }
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(212, 46%, 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 #c9d9eb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(201, 217, 235, 10%) | #c9d9eb1a | |
rgb(201, 217, 235, 20%) | #c9d9eb33 | |
rgb(201, 217, 235, 40%) | #c9d9eb4C | |
rgb(201, 217, 235, 60%) | #c9d9eb99 | |
rgb(201, 217, 235, 80%) | #c9d9ebCC | |
rgb(201, 217, 235, 100%) | #c9d9ebFF |
Saturated and desaturated colors of #c9d9eb
HSL Code | Preview |
---|---|
hsl(212, 10%, 85%) | |
hsl(212, 20%, 85%) | |
hsl(212, 40%, 85%) | |
hsl(212, 60%, 85%) | |
hsl(212, 80%, 85%) | |
hsl(212, 100%, 85%) |
#c9d9eb Color Usage In CSS
body { color: #c9d9eb; } p { color: rgb(201, 217, 235); } header { border-bottom:1px solid #c9d9eb; }