#cccdcd hex color information.
RGB value of #cccdcd is (204,205,205)
Change page background color to #cccdcd
| Reset
| RGB | 204 | 205 | 205 |
|---|---|---|---|
| HSL | 0.50 | 0.01 | 0.80 |
| HSV | 180° | 0° | 80° |
| CMYK | 0.00 | 0.00 | 0.00 0.20 |
| XYZ | 57.7526 | 60.9078 | 66.4701 |
| Yxy | 60.9078 | 0.3120 | 0.3290 |
| Hunter Lab | 78.0434 | -4.4850 | 4.1327 |
| CIE-Lab | 82.3292 | -0.3381 | -0.1293 |
#cccdcd hex color red value is 204, green value is 205 and the blue value of its RGB is 205. Cylindrical-coordinate representations (also known as HSL) of color #cccdcd hue: 0.50 , saturation: 0.01 and the lightness value of cccdcd is 0.80.
The process color (four color CMYK) of #cccdcd hex color is 0.00, 0.00, 0.00, 0.20. Web safe color of #cccdcd is #cccccc
Color #cccdcd contains mostly GREEN color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11001100 | 11001101 | 11001101 |
| Octal | 314 | 315 | 315 |
| Decimal | 204 | 205 | 205 |
| Hexadecimal | CC | CD | CD |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#cccdcd; }
.myforecolor {color:#cccdcd; }
.mybordercolor {border:3px solid #cccdcd; }
This sample text font color is #cccdcd
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:#cccdcd">Text here</p>
This div background color is #cccdcd
<div style="background-color:#cccdcd">
Div content here</div>
This div border color is #cccdcd
<div style="border:3px solid #cccdcd">
Div here</div>
| #cccdcd | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(204,205,205, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #cccdcd;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #cccdcd;
-webkit-box-shadow: 1px 1px 3px 2px #cccdcd;
box-shadow: 1px 1px 3px 2px #cccdcd;
}
<p style="text-shadow: 4px 4px 2px rgba(204,205,205, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #cccdcd">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #cccdcd
<div style="-moz-box-shadow: 1px 1px 3px 2px #cccdcd; -webkit-box-shadow: 1px 1px 3px 2px #cccdcd; box-shadow: 1px 1px 3px 2px #cccdcd;">
Div content here</div>