#dbddde hex color information.
RGB value of #dbddde is (219,221,222)
Change page background color to #dbddde
| Reset
| RGB | 219 | 221 | 222 |
|---|---|---|---|
| HSL | 0.56 | 0.04 | 0.86 |
| HSV | 200° | 1° | 87° |
| CMYK | 0.01 | 0.00 | 0.00 0.13 |
| XYZ | 68.2547 | 72.0469 | 79.4163 |
| Yxy | 72.0469 | 0.3106 | 0.3279 |
| Hunter Lab | 84.8804 | -5.0040 | 3.9431 |
| CIE-Lab | 87.9912 | -0.4887 | -0.7356 |
#dbddde hex color red value is 219, green value is 221 and the blue value of its RGB is 221. Cylindrical-coordinate representations (also known as HSL) of color #dbddde hue: 0.56 , saturation: 0.04 and the lightness value of dbddde is 0.86.
The process color (four color CMYK) of #dbddde hex color is 0.01, 0.00, 0.00, 0.13. Web safe color of #dbddde is #cccccc
Color #dbddde contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11011011 | 11011101 | 11011110 |
| Octal | 333 | 335 | 336 |
| Decimal | 219 | 221 | 222 |
| Hexadecimal | DB | DD | DE |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#dbddde; }
.myforecolor {color:#dbddde; }
.mybordercolor {border:3px solid #dbddde; }
This sample text font color is #dbddde
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:#dbddde">Text here</p>
This div background color is #dbddde
<div style="background-color:#dbddde">
Div content here</div>
This div border color is #dbddde
<div style="border:3px solid #dbddde">
Div here</div>
| #dbddde | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(219,221,222, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #dbddde;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #dbddde;
-webkit-box-shadow: 1px 1px 3px 2px #dbddde;
box-shadow: 1px 1px 3px 2px #dbddde;
}
<p style="text-shadow: 4px 4px 2px rgba(219,221,222, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #dbddde">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #dbddde
<div style="-moz-box-shadow: 1px 1px 3px 2px #dbddde; -webkit-box-shadow: 1px 1px 3px 2px #dbddde; box-shadow: 1px 1px 3px 2px #dbddde;">
Div content here</div>