#cce7ee Color
Color Codes | |
---|---|
Hex Code | #cce7ee |
RGB Code | rgb(204, 231, 238) |
HSL Code | hsl(192, 50%, 87%) |
#cce7ee Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(204, 231, 238); }
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, 50%, 87%); }
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 #cce7ee
RGB Code | Hex Code | Preview |
---|---|---|
rgb(204, 231, 238, 10%) | #cce7ee1a | |
rgb(204, 231, 238, 20%) | #cce7ee33 | |
rgb(204, 231, 238, 40%) | #cce7ee4C | |
rgb(204, 231, 238, 60%) | #cce7ee99 | |
rgb(204, 231, 238, 80%) | #cce7eeCC | |
rgb(204, 231, 238, 100%) | #cce7eeFF |
Saturated and desaturated colors of #cce7ee
HSL Code | Preview |
---|---|
hsl(192, 10%, 87%) | |
hsl(192, 20%, 87%) | |
hsl(192, 40%, 87%) | |
hsl(192, 60%, 87%) | |
hsl(192, 80%, 87%) | |
hsl(192, 100%, 87%) |
#cce7ee Color Usage In CSS
body { color: #cce7ee; } p { color: rgb(204, 231, 238); } header { border-bottom:1px solid #cce7ee; }