HEX: #C4CCDD
RGB: (196,204,221)
#C4CCDD contains red, green and blue colors in about the same proportion. Web safe color of #C4CCDD is #CCCCCC (or #CCC).
#C4CCDD color RGB value is (196,204,221).
RGB: (196,204,221) (77%,80%,87%)
R 196 of 255 = 77%
G 204 of 255 = 80%
B 221 of 255 = 87%
R + G + B ~ 81%. #C4CCDD is quite light color.
R + G + B =
196 + 204 + 221 = 621 (100%)
R 196 of 621 ~ 31.56%
G 204 of 621 ~ 32.85%
B 221 of 621 ~ 35.59%
#C4CCDD color CMYK value is (11,8,0,13).
CMYK: (11,8,0,13) C11M8Y0K13 (11%,8%,0%,13%) (0.11/0.08/0.00/0.13)
C4 | CC | DD | |
---|---|---|---|
RGB | 196 | 204 | 221 |
HSL | 221° | 26.88% | 81.76% |
HSB/HSV | 221° | 11.31% | 86.67% |
CMYK | 11.31% | 7.69% | 0.00% |
13.33% |
HEX | C4 | CC | DD |
Decimal | 196 | 204 | 221 |
Binary | 11000100 | 11001100 | 11011101 |
Octal | 304 | 314 | 335 |
Examples of css and html codes for elements with #C4CCDD color. Also use rgb(196,204,221) instead hex code.
.myTextColor { color: #C4CCDD; }
<p style="color:#C4CCDD">This sample text font color is #C4CCDD.</p>
This text font color is #C4CCDD.
.myBgColor { background-color: #C4CCDD; }
<div style="background-color:#C4CCDD">Inner text</div>
This div background color is #C4CCDD.
.myBorderColor { border: 1px solid #C4CCDD; }
<div style="border:3px solid #C4CCDD">Div</div>
This div border color is #C4CCDD.
.myOpacity80 { color: #C4CCDD; opacity: 0.8; }
<p style="color:#C4CCDD;opacity:0.8;">80%</p>
Text with #C4CCDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4CCDD;}
<p style="text-shadow: 3px 3px 1px #C4CCDD">Text here.</p>
This text has shadow with #C4CCDD color.
.textShadow {text-shadow: 3px 3px 1px #C4CCDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4CCDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4CCDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4CCDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4CCDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4CCDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4CCDD; -webkit-box-shadow: 1px 1px 3px 2px #C4CCDD; box-shadow: 1px 1px 3px 2px #C4CCDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4CCDD; -webkit-box-shadow: 1px 1px 3px 2px #C4CCDD; box-shadow:1px 1px 3px 2px #C4CCDD;">
Div content here</div>
This text has color #C4CCDD on black background.
This text has color #C4CCDD on white background.
This text has black color on #C4CCDD background.
This text has white color on #C4CCDD background.