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