#d3cbda hex color information.
RGB value of #d3cbda is (211,203,218)
Change page background color to #d3cbda
| Reset
| RGB | 211 | 203 | 218 |
|---|---|---|---|
| HSL | 0.76 | 0.17 | 0.83 |
| HSV | 272° | 7° | 85° |
| CMYK | 0.03 | 0.07 | 0.00 0.15 |
| XYZ | 60.8748 | 61.6227 | 75.0156 |
| Yxy | 61.6227 | 0.3082 | 0.3120 |
| Hunter Lab | 78.5001 | 1.0469 | -1.7081 |
| CIE-Lab | 82.7124 | 5.5082 | -6.4482 |
#d3cbda hex color red value is 211, green value is 203 and the blue value of its RGB is 203. Cylindrical-coordinate representations (also known as HSL) of color #d3cbda hue: 0.76 , saturation: 0.17 and the lightness value of d3cbda is 0.83.
The process color (four color CMYK) of #d3cbda hex color is 0.03, 0.07, 0.00, 0.15. Web safe color of #d3cbda is #cccccc
Color #d3cbda contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11010011 | 11001011 | 11011010 |
| Octal | 323 | 313 | 332 |
| Decimal | 211 | 203 | 218 |
| Hexadecimal | D3 | CB | DA |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#d3cbda; }
.myforecolor {color:#d3cbda; }
.mybordercolor {border:3px solid #d3cbda; }
This sample text font color is #d3cbda
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#d3cbda">Text here</p>
This div background color is #d3cbda
<div style="background-color:#d3cbda">
Div content here</div>
This div border color is #d3cbda
<div style="border:3px solid #d3cbda">
Div here</div>
| #d3cbda | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(211,203,218, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #d3cbda;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #d3cbda;
-webkit-box-shadow: 1px 1px 3px 2px #d3cbda;
box-shadow: 1px 1px 3px 2px #d3cbda;
}
<p style="text-shadow: 4px 4px 2px rgba(211,203,218, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #d3cbda">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #d3cbda
<div style="-moz-box-shadow: 1px 1px 3px 2px #d3cbda; -webkit-box-shadow: 1px 1px 3px 2px #d3cbda; box-shadow: 1px 1px 3px 2px #d3cbda;">
Div content here</div>