HEX: #C2CCEC
RGB: (194,204,236)
#C2CCEC contains red, green and blue colors in about the same proportion. Web safe color of #C2CCEC is #CCCCFF (or #CCF).
#C2CCEC color RGB value is (194,204,236).
RGB: (194,204,236) (76%,80%,93%)
R 194 of 255 = 76%
G 204 of 255 = 80%
B 236 of 255 = 93%
R + G + B ~ 83%. #C2CCEC is quite light color.
R + G + B =
194 + 204 + 236 = 634 (100%)
R 194 of 634 ~ 30.6%
G 204 of 634 ~ 32.18%
B 236 of 634 ~ 37.22%
#C2CCEC color CMYK value is (18,14,0,7).
CMYK: (18,14,0,7) C18M14Y0K7 (18%,14%,0%,7%) (0.18/0.14/0.00/0.07)
C2 | CC | EC | |
---|---|---|---|
RGB | 194 | 204 | 236 |
HSL | 226° | 52.50% | 84.31% |
HSB/HSV | 226° | 17.80% | 92.55% |
CMYK | 17.80% | 13.56% | 0.00% |
7.45% |
HEX | C2 | CC | EC |
Decimal | 194 | 204 | 236 |
Binary | 11000010 | 11001100 | 11101100 |
Octal | 302 | 314 | 354 |
Examples of css and html codes for elements with #C2CCEC color. Also use rgb(194,204,236) instead hex code.
.myTextColor { color: #C2CCEC; }
<p style="color:#C2CCEC">This sample text font color is #C2CCEC.</p>
This text font color is #C2CCEC.
.myBgColor { background-color: #C2CCEC; }
<div style="background-color:#C2CCEC">Inner text</div>
This div background color is #C2CCEC.
.myBorderColor { border: 1px solid #C2CCEC; }
<div style="border:3px solid #C2CCEC">Div</div>
This div border color is #C2CCEC.
.myOpacity80 { color: #C2CCEC; opacity: 0.8; }
<p style="color:#C2CCEC;opacity:0.8;">80%</p>
Text with #C2CCEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C2CCEC;}
<p style="text-shadow: 3px 3px 1px #C2CCEC">Text here.</p>
This text has shadow with #C2CCEC color.
.textShadow {text-shadow: 3px 3px 1px #C2CCEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C2CCEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C2CCEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C2CCEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C2CCEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C2CCEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C2CCEC; -webkit-box-shadow: 1px 1px 3px 2px #C2CCEC; box-shadow: 1px 1px 3px 2px #C2CCEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C2CCEC; -webkit-box-shadow: 1px 1px 3px 2px #C2CCEC; box-shadow:1px 1px 3px 2px #C2CCEC;">
Div content here</div>
This text has color #C2CCEC on black background.
This text has color #C2CCEC on white background.
This text has black color on #C2CCEC background.
This text has white color on #C2CCEC background.