HEX: #C8CCDA
RGB: (200,204,218)
#C8CCDA contains red, green and blue colors in about the same proportion. Web safe color of #C8CCDA is #CCCCCC (or #CCC).
#C8CCDA color RGB value is (200,204,218).
RGB: (200,204,218) (78%,80%,85%)
R 200 of 255 = 78%
G 204 of 255 = 80%
B 218 of 255 = 85%
R + G + B ~ 81%. #C8CCDA is quite light color.
R + G + B =
200 + 204 + 218 = 622 (100%)
R 200 of 622 ~ 32.15%
G 204 of 622 ~ 32.8%
B 218 of 622 ~ 35.05%
#C8CCDA color CMYK value is (8,6,0,15).
CMYK: (8,6,0,15) C8M6Y0K15 (8%,6%,0%,15%) (0.08/0.06/0.00/0.15)
C8 | CC | DA | |
---|---|---|---|
RGB | 200 | 204 | 218 |
HSL | 227° | 19.57% | 81.96% |
HSB/HSV | 227° | 8.26% | 85.49% |
CMYK | 8.26% | 6.42% | 0.00% |
14.51% |
HEX | C8 | CC | DA |
Decimal | 200 | 204 | 218 |
Binary | 11001000 | 11001100 | 11011010 |
Octal | 310 | 314 | 332 |
Examples of css and html codes for elements with #C8CCDA color. Also use rgb(200,204,218) instead hex code.
.myTextColor { color: #C8CCDA; }
<p style="color:#C8CCDA">This sample text font color is #C8CCDA.</p>
This text font color is #C8CCDA.
.myBgColor { background-color: #C8CCDA; }
<div style="background-color:#C8CCDA">Inner text</div>
This div background color is #C8CCDA.
.myBorderColor { border: 1px solid #C8CCDA; }
<div style="border:3px solid #C8CCDA">Div</div>
This div border color is #C8CCDA.
.myOpacity80 { color: #C8CCDA; opacity: 0.8; }
<p style="color:#C8CCDA;opacity:0.8;">80%</p>
Text with #C8CCDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C8CCDA;}
<p style="text-shadow: 3px 3px 1px #C8CCDA">Text here.</p>
This text has shadow with #C8CCDA color.
.textShadow {text-shadow: 3px 3px 1px #C8CCDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C8CCDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C8CCDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C8CCDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C8CCDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C8CCDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C8CCDA; -webkit-box-shadow: 1px 1px 3px 2px #C8CCDA; box-shadow: 1px 1px 3px 2px #C8CCDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C8CCDA; -webkit-box-shadow: 1px 1px 3px 2px #C8CCDA; box-shadow:1px 1px 3px 2px #C8CCDA;">
Div content here</div>
This text has color #C8CCDA on black background.
This text has color #C8CCDA on white background.
This text has black color on #C8CCDA background.
This text has white color on #C8CCDA background.