#d0ebdc Color
Color Codes | |
---|---|
Hex Code | #d0ebdc |
RGB Code | rgb(208, 235, 220) |
HSL Code | hsl(147, 40%, 87%) |
#d0ebdc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(208, 235, 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(147, 40%, 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 #d0ebdc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(208, 235, 220, 10%) | #d0ebdc1a | |
rgb(208, 235, 220, 20%) | #d0ebdc33 | |
rgb(208, 235, 220, 40%) | #d0ebdc4C | |
rgb(208, 235, 220, 60%) | #d0ebdc99 | |
rgb(208, 235, 220, 80%) | #d0ebdcCC | |
rgb(208, 235, 220, 100%) | #d0ebdcFF |
Saturated and desaturated colors of #d0ebdc
HSL Code | Preview |
---|---|
hsl(147, 10%, 87%) | |
hsl(147, 20%, 87%) | |
hsl(147, 40%, 87%) | |
hsl(147, 60%, 87%) | |
hsl(147, 80%, 87%) | |
hsl(147, 100%, 87%) |
#d0ebdc Color Usage In CSS
body { color: #d0ebdc; } p { color: rgb(208, 235, 220); } header { border-bottom:1px solid #d0ebdc; }