#d2cbc8 Color
Color Codes | |
---|---|
Hex Code | #d2cbc8 |
RGB Code | rgb(210, 203, 200) |
HSL Code | hsl(18, 10%, 80%) |
#d2cbc8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(210, 203, 200); }
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(18, 10%, 80%); }
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 #d2cbc8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(210, 203, 200, 10%) | #d2cbc81a | |
rgb(210, 203, 200, 20%) | #d2cbc833 | |
rgb(210, 203, 200, 40%) | #d2cbc84C | |
rgb(210, 203, 200, 60%) | #d2cbc899 | |
rgb(210, 203, 200, 80%) | #d2cbc8CC | |
rgb(210, 203, 200, 100%) | #d2cbc8FF |
Saturated and desaturated colors of #d2cbc8
HSL Code | Preview |
---|---|
hsl(18, 10%, 80%) | |
hsl(18, 20%, 80%) | |
hsl(18, 40%, 80%) | |
hsl(18, 60%, 80%) | |
hsl(18, 80%, 80%) | |
hsl(18, 100%, 80%) |
#d2cbc8 Color Usage In CSS
body { color: #d2cbc8; } p { color: rgb(210, 203, 200); } header { border-bottom:1px solid #d2cbc8; }