#d9d9d9 hex color information.
RGB value of #d9d9d9 is (217,217,217)
Change page background color to #d9d9d9
| Reset
| RGB | 217 | 217 | 217 |
|---|---|---|---|
| HSL | 0.00 | 0.00 | 0.85 |
| HSV | 0° | 0° | 85° |
| CMYK | 0.00 | 0.00 | 0.00 0.15 |
| XYZ | 65.9525 | 69.3872 | 75.5626 |
| Yxy | 69.3872 | 0.3127 | 0.3290 |
| Hunter Lab | 83.2990 | -4.4447 | 4.5258 |
| CIE-Lab | 86.6954 | 0.0046 | -0.0092 |
#d9d9d9 hex color red value is 217, green value is 217 and the blue value of its RGB is 217. Cylindrical-coordinate representations (also known as HSL) of color #d9d9d9 hue: 0.00 , saturation: 0.00 and the lightness value of d9d9d9 is 0.85.
The process color (four color CMYK) of #d9d9d9 hex color is 0.00, 0.00, 0.00, 0.15. Web safe color of #d9d9d9 is #cccccc
Color #d9d9d9 rgb is equally color. #d9d9d9 color name is Gray85.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11011001 | 11011001 | 11011001 |
| Octal | 331 | 331 | 331 |
| Decimal | 217 | 217 | 217 |
| Hexadecimal | D9 | D9 | D9 |
Analogous colors are identical
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#d9d9d9; }
.myforecolor {color:#d9d9d9; }
.mybordercolor {border:3px solid #d9d9d9; }
This sample text font color is #d9d9d9
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:#d9d9d9">Text here</p>
This div background color is #d9d9d9
<div style="background-color:#d9d9d9">
Div content here</div>
This div border color is #d9d9d9
<div style="border:3px solid #d9d9d9">
Div here</div>
| #d9d9d9 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(217,217,217, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #d9d9d9;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #d9d9d9;
-webkit-box-shadow: 1px 1px 3px 2px #d9d9d9;
box-shadow: 1px 1px 3px 2px #d9d9d9;
}
<p style="text-shadow: 4px 4px 2px rgba(217,217,217, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #d9d9d9">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #d9d9d9
<div style="-moz-box-shadow: 1px 1px 3px 2px #d9d9d9; -webkit-box-shadow: 1px 1px 3px 2px #d9d9d9; box-shadow: 1px 1px 3px 2px #d9d9d9;">
Div content here</div>