#d2d9e1 Color
Color Codes | |
---|---|
Hex Code | #d2d9e1 |
RGB Code | rgb(210, 217, 225) |
HSL Code | hsl(212, 20%, 85%) |
#d2d9e1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(210, 217, 225); }
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, 20%, 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 #d2d9e1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(210, 217, 225, 10%) | #d2d9e11a | |
rgb(210, 217, 225, 20%) | #d2d9e133 | |
rgb(210, 217, 225, 40%) | #d2d9e14C | |
rgb(210, 217, 225, 60%) | #d2d9e199 | |
rgb(210, 217, 225, 80%) | #d2d9e1CC | |
rgb(210, 217, 225, 100%) | #d2d9e1FF |
Saturated and desaturated colors of #d2d9e1
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%) |
#d2d9e1 Color Usage In CSS
body { color: #d2d9e1; } p { color: rgb(210, 217, 225); } header { border-bottom:1px solid #d2d9e1; }