#d3dbcb Color
Color Codes | |
---|---|
Hex Code | #d3dbcb |
RGB Code | rgb(211, 219, 203) |
HSL Code | hsl(90, 18%, 83%) |
#d3dbcb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(211, 219, 203); }
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(90, 18%, 83%); }
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 #d3dbcb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(211, 219, 203, 10%) | #d3dbcb1a | |
rgb(211, 219, 203, 20%) | #d3dbcb33 | |
rgb(211, 219, 203, 40%) | #d3dbcb4C | |
rgb(211, 219, 203, 60%) | #d3dbcb99 | |
rgb(211, 219, 203, 80%) | #d3dbcbCC | |
rgb(211, 219, 203, 100%) | #d3dbcbFF |
Saturated and desaturated colors of #d3dbcb
HSL Code | Preview |
---|---|
hsl(90, 10%, 83%) | |
hsl(90, 20%, 83%) | |
hsl(90, 40%, 83%) | |
hsl(90, 60%, 83%) | |
hsl(90, 80%, 83%) | |
hsl(90, 100%, 83%) |
#d3dbcb Color Usage In CSS
body { color: #d3dbcb; } p { color: rgb(211, 219, 203); } header { border-bottom:1px solid #d3dbcb; }