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