#d2d4d5 hex color information.
RGB value of #d2d4d5 is (210,212,213)
Change page background color to #d2d4d5
| Reset
| RGB | 210 | 212 | 213 |
|---|---|---|---|
| HSL | 0.56 | 0.03 | 0.83 |
| HSV | 200° | 1° | 84° |
| CMYK | 0.01 | 0.00 | 0.00 0.16 |
| XYZ | 62.1321 | 65.5927 | 72.3367 |
| Yxy | 65.5927 | 0.3106 | 0.3279 |
| Hunter Lab | 80.9893 | -4.7925 | 3.7369 |
| CIE-Lab | 84.7882 | -0.4925 | -0.7409 |
#d2d4d5 hex color red value is 210, green value is 212 and the blue value of its RGB is 212. Cylindrical-coordinate representations (also known as HSL) of color #d2d4d5 hue: 0.56 , saturation: 0.03 and the lightness value of d2d4d5 is 0.83.
The process color (four color CMYK) of #d2d4d5 hex color is 0.01, 0.00, 0.00, 0.16. Web safe color of #d2d4d5 is #cccccc
Color #d2d4d5 contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11010010 | 11010100 | 11010101 |
| Octal | 322 | 324 | 325 |
| Decimal | 210 | 212 | 213 |
| Hexadecimal | D2 | D4 | D5 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#d2d4d5; }
.myforecolor {color:#d2d4d5; }
.mybordercolor {border:3px solid #d2d4d5; }
This sample text font color is #d2d4d5
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:#d2d4d5">Text here</p>
This div background color is #d2d4d5
<div style="background-color:#d2d4d5">
Div content here</div>
This div border color is #d2d4d5
<div style="border:3px solid #d2d4d5">
Div here</div>
| #d2d4d5 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(210,212,213, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #d2d4d5;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #d2d4d5;
-webkit-box-shadow: 1px 1px 3px 2px #d2d4d5;
box-shadow: 1px 1px 3px 2px #d2d4d5;
}
<p style="text-shadow: 4px 4px 2px rgba(210,212,213, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #d2d4d5">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #d2d4d5
<div style="-moz-box-shadow: 1px 1px 3px 2px #d2d4d5; -webkit-box-shadow: 1px 1px 3px 2px #d2d4d5; box-shadow: 1px 1px 3px 2px #d2d4d5;">
Div content here</div>