HEX: #C3C7DC
RGB: (195,199,220)
#C3C7DC contains red, green and blue colors in about the same proportion. Web safe color of #C3C7DC is #CCCCCC (or #CCC).
#C3C7DC color RGB value is (195,199,220).
RGB: (195,199,220) (76%,78%,86%)
R 195 of 255 = 76%
G 199 of 255 = 78%
B 220 of 255 = 86%
R + G + B ~ 80%. #C3C7DC is quite light color.
R + G + B =
195 + 199 + 220 = 614 (100%)
R 195 of 614 ~ 31.76%
G 199 of 614 ~ 32.41%
B 220 of 614 ~ 35.83%
#C3C7DC color CMYK value is (11,10,0,14).
CMYK: (11,10,0,14) C11M10Y0K14 (11%,10%,0%,14%) (0.11/0.10/0.00/0.14)
C3 | C7 | DC | |
---|---|---|---|
RGB | 195 | 199 | 220 |
HSL | 230° | 26.32% | 81.37% |
HSB/HSV | 230° | 11.36% | 86.27% |
CMYK | 11.36% | 9.55% | 0.00% |
13.73% |
HEX | C3 | C7 | DC |
Decimal | 195 | 199 | 220 |
Binary | 11000011 | 11000111 | 11011100 |
Octal | 303 | 307 | 334 |
Examples of css and html codes for elements with #C3C7DC color. Also use rgb(195,199,220) instead hex code.
.myTextColor { color: #C3C7DC; }
<p style="color:#C3C7DC">This sample text font color is #C3C7DC.</p>
This text font color is #C3C7DC.
.myBgColor { background-color: #C3C7DC; }
<div style="background-color:#C3C7DC">Inner text</div>
This div background color is #C3C7DC.
.myBorderColor { border: 1px solid #C3C7DC; }
<div style="border:3px solid #C3C7DC">Div</div>
This div border color is #C3C7DC.
.myOpacity80 { color: #C3C7DC; opacity: 0.8; }
<p style="color:#C3C7DC;opacity:0.8;">80%</p>
Text with #C3C7DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C3C7DC;}
<p style="text-shadow: 3px 3px 1px #C3C7DC">Text here.</p>
This text has shadow with #C3C7DC color.
.textShadow {text-shadow: 3px 3px 1px #C3C7DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C3C7DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C3C7DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C3C7DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C3C7DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C3C7DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C3C7DC; -webkit-box-shadow: 1px 1px 3px 2px #C3C7DC; box-shadow: 1px 1px 3px 2px #C3C7DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C3C7DC; -webkit-box-shadow: 1px 1px 3px 2px #C3C7DC; box-shadow:1px 1px 3px 2px #C3C7DC;">
Div content here</div>
This text has color #C3C7DC on black background.
This text has color #C3C7DC on white background.
This text has black color on #C3C7DC background.
This text has white color on #C3C7DC background.