#d4ccce hex color information.
RGB value of #d4ccce is (212,204,206)
Change page background color to #d4ccce
| Reset
| RGB | 212 | 204 | 206 |
|---|---|---|---|
| HSL | 0.96 | 0.09 | 0.82 |
| HSV | 345° | 4° | 83° |
| CMYK | 0.00 | 0.04 | 0.03 0.17 |
| XYZ | 59.8848 | 61.6390 | 67.1338 |
| Yxy | 61.6390 | 0.3174 | 0.3267 |
| Hunter Lab | 78.5105 | -1.2404 | 4.2589 |
| CIE-Lab | 82.7211 | 3.1215 | -0.0164 |
#d4ccce hex color red value is 212, green value is 204 and the blue value of its RGB is 204. Cylindrical-coordinate representations (also known as HSL) of color #d4ccce hue: 0.96 , saturation: 0.09 and the lightness value of d4ccce is 0.82.
The process color (four color CMYK) of #d4ccce hex color is 0.00, 0.04, 0.03, 0.17. Web safe color of #d4ccce is #cccccc
Color #d4ccce contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11010100 | 11001100 | 11001110 |
| Octal | 324 | 314 | 316 |
| Decimal | 212 | 204 | 206 |
| Hexadecimal | D4 | CC | CE |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#d4ccce; }
.myforecolor {color:#d4ccce; }
.mybordercolor {border:3px solid #d4ccce; }
This sample text font color is #d4ccce
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:#d4ccce">Text here</p>
This div background color is #d4ccce
<div style="background-color:#d4ccce">
Div content here</div>
This div border color is #d4ccce
<div style="border:3px solid #d4ccce">
Div here</div>
| #d4ccce | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(212,204,206, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #d4ccce;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #d4ccce;
-webkit-box-shadow: 1px 1px 3px 2px #d4ccce;
box-shadow: 1px 1px 3px 2px #d4ccce;
}
<p style="text-shadow: 4px 4px 2px rgba(212,204,206, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #d4ccce">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #d4ccce
<div style="-moz-box-shadow: 1px 1px 3px 2px #d4ccce; -webkit-box-shadow: 1px 1px 3px 2px #d4ccce; box-shadow: 1px 1px 3px 2px #d4ccce;">
Div content here</div>