HEX: #C4CCDE
RGB: (196,204,222)
#C4CCDE contains red, green and blue colors in about the same proportion. Web safe color of #C4CCDE is #CCCCCC (or #CCC).
#C4CCDE color RGB value is (196,204,222).
RGB: (196,204,222) (77%,80%,87%)
R 196 of 255 = 77%
G 204 of 255 = 80%
B 222 of 255 = 87%
R + G + B ~ 81%. #C4CCDE is quite light color.
R + G + B =
196 + 204 + 222 = 622 (100%)
R 196 of 622 ~ 31.51%
G 204 of 622 ~ 32.8%
B 222 of 622 ~ 35.69%
#C4CCDE color CMYK value is (12,8,0,13).
CMYK: (12,8,0,13) C12M8Y0K13 (12%,8%,0%,13%) (0.12/0.08/0.00/0.13)
C4 | CC | DE | |
---|---|---|---|
RGB | 196 | 204 | 222 |
HSL | 222° | 28.26% | 81.96% |
HSB/HSV | 222° | 11.71% | 87.06% |
CMYK | 11.71% | 8.11% | 0.00% |
12.94% |
HEX | C4 | CC | DE |
Decimal | 196 | 204 | 222 |
Binary | 11000100 | 11001100 | 11011110 |
Octal | 304 | 314 | 336 |
Examples of css and html codes for elements with #C4CCDE color. Also use rgb(196,204,222) instead hex code.
.myTextColor { color: #C4CCDE; }
<p style="color:#C4CCDE">This sample text font color is #C4CCDE.</p>
This text font color is #C4CCDE.
.myBgColor { background-color: #C4CCDE; }
<div style="background-color:#C4CCDE">Inner text</div>
This div background color is #C4CCDE.
.myBorderColor { border: 1px solid #C4CCDE; }
<div style="border:3px solid #C4CCDE">Div</div>
This div border color is #C4CCDE.
.myOpacity80 { color: #C4CCDE; opacity: 0.8; }
<p style="color:#C4CCDE;opacity:0.8;">80%</p>
Text with #C4CCDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4CCDE;}
<p style="text-shadow: 3px 3px 1px #C4CCDE">Text here.</p>
This text has shadow with #C4CCDE color.
.textShadow {text-shadow: 3px 3px 1px #C4CCDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4CCDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4CCDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4CCDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4CCDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4CCDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4CCDE; -webkit-box-shadow: 1px 1px 3px 2px #C4CCDE; box-shadow: 1px 1px 3px 2px #C4CCDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4CCDE; -webkit-box-shadow: 1px 1px 3px 2px #C4CCDE; box-shadow:1px 1px 3px 2px #C4CCDE;">
Div content here</div>
This text has color #C4CCDE on black background.
This text has color #C4CCDE on white background.
This text has black color on #C4CCDE background.
This text has white color on #C4CCDE background.