HEX: #C2C6DC
RGB: (194,198,220)
#C2C6DC contains red, green and blue colors in about the same proportion. Web safe color of #C2C6DC is #CCCCCC (or #CCC).
#C2C6DC color RGB value is (194,198,220).
RGB: (194,198,220) (76%,78%,86%)
R 194 of 255 = 76%
G 198 of 255 = 78%
B 220 of 255 = 86%
R + G + B ~ 80%. #C2C6DC is quite light color.
R + G + B =
194 + 198 + 220 = 612 (100%)
R 194 of 612 ~ 31.7%
G 198 of 612 ~ 32.35%
B 220 of 612 ~ 35.95%
#C2C6DC color CMYK value is (12,10,0,14).
CMYK: (12,10,0,14) C12M10Y0K14 (12%,10%,0%,14%) (0.12/0.10/0.00/0.14)
C2 | C6 | DC | |
---|---|---|---|
RGB | 194 | 198 | 220 |
HSL | 231° | 27.08% | 81.18% |
HSB/HSV | 231° | 11.82% | 86.27% |
CMYK | 11.82% | 10.00% | 0.00% |
13.73% |
HEX | C2 | C6 | DC |
Decimal | 194 | 198 | 220 |
Binary | 11000010 | 11000110 | 11011100 |
Octal | 302 | 306 | 334 |
Examples of css and html codes for elements with #C2C6DC color. Also use rgb(194,198,220) instead hex code.
.myTextColor { color: #C2C6DC; }
<p style="color:#C2C6DC">This sample text font color is #C2C6DC.</p>
This text font color is #C2C6DC.
.myBgColor { background-color: #C2C6DC; }
<div style="background-color:#C2C6DC">Inner text</div>
This div background color is #C2C6DC.
.myBorderColor { border: 1px solid #C2C6DC; }
<div style="border:3px solid #C2C6DC">Div</div>
This div border color is #C2C6DC.
.myOpacity80 { color: #C2C6DC; opacity: 0.8; }
<p style="color:#C2C6DC;opacity:0.8;">80%</p>
Text with #C2C6DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C2C6DC;}
<p style="text-shadow: 3px 3px 1px #C2C6DC">Text here.</p>
This text has shadow with #C2C6DC color.
.textShadow {text-shadow: 3px 3px 1px #C2C6DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C2C6DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C2C6DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C2C6DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C2C6DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C2C6DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C2C6DC; -webkit-box-shadow: 1px 1px 3px 2px #C2C6DC; box-shadow: 1px 1px 3px 2px #C2C6DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C2C6DC; -webkit-box-shadow: 1px 1px 3px 2px #C2C6DC; box-shadow:1px 1px 3px 2px #C2C6DC;">
Div content here</div>
This text has color #C2C6DC on black background.
This text has color #C2C6DC on white background.
This text has black color on #C2C6DC background.
This text has white color on #C2C6DC background.