#d1ecce Color
Color Codes | |
---|---|
Hex Code | #d1ecce |
RGB Code | rgb(209, 236, 206) |
HSL Code | hsl(114, 44%, 87%) |
#d1ecce Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(209, 236, 206); }
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(114, 44%, 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 #d1ecce
RGB Code | Hex Code | Preview |
---|---|---|
rgb(209, 236, 206, 10%) | #d1ecce1a | |
rgb(209, 236, 206, 20%) | #d1ecce33 | |
rgb(209, 236, 206, 40%) | #d1ecce4C | |
rgb(209, 236, 206, 60%) | #d1ecce99 | |
rgb(209, 236, 206, 80%) | #d1ecceCC | |
rgb(209, 236, 206, 100%) | #d1ecceFF |
Saturated and desaturated colors of #d1ecce
HSL Code | Preview |
---|---|
hsl(114, 10%, 87%) | |
hsl(114, 20%, 87%) | |
hsl(114, 40%, 87%) | |
hsl(114, 60%, 87%) | |
hsl(114, 80%, 87%) | |
hsl(114, 100%, 87%) |
#d1ecce Color Usage In CSS
body { color: #d1ecce; } p { color: rgb(209, 236, 206); } header { border-bottom:1px solid #d1ecce; }