#d1ffcd Color
Color Codes | |
---|---|
Hex Code | #d1ffcd |
RGB Code | rgb(209, 255, 205) |
HSL Code | hsl(115, 100%, 90%) |
#d1ffcd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(209, 255, 205); }
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(115, 100%, 90%); }
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 #d1ffcd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(209, 255, 205, 10%) | #d1ffcd1a | |
rgb(209, 255, 205, 20%) | #d1ffcd33 | |
rgb(209, 255, 205, 40%) | #d1ffcd4C | |
rgb(209, 255, 205, 60%) | #d1ffcd99 | |
rgb(209, 255, 205, 80%) | #d1ffcdCC | |
rgb(209, 255, 205, 100%) | #d1ffcdFF |
Saturated and desaturated colors of #d1ffcd
HSL Code | Preview |
---|---|
hsl(115, 10%, 90%) | |
hsl(115, 20%, 90%) | |
hsl(115, 40%, 90%) | |
hsl(115, 60%, 90%) | |
hsl(115, 80%, 90%) | |
hsl(115, 100%, 90%) |
#d1ffcd Color Usage In CSS
body { color: #d1ffcd; } p { color: rgb(209, 255, 205); } header { border-bottom:1px solid #d1ffcd; }