HEX: #C2CCED
RGB: (194,204,237)
#C2CCED contains red, green and blue colors in about the same proportion. Web safe color of #C2CCED is #CCCCFF (or #CCF).
#C2CCED color RGB value is (194,204,237).
RGB: (194,204,237) (76%,80%,93%)
R 194 of 255 = 76%
G 204 of 255 = 80%
B 237 of 255 = 93%
R + G + B ~ 83%. #C2CCED is quite light color.
R + G + B =
194 + 204 + 237 = 635 (100%)
R 194 of 635 ~ 30.55%
G 204 of 635 ~ 32.13%
B 237 of 635 ~ 37.32%
#C2CCED 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 | ED | |
---|---|---|---|
RGB | 194 | 204 | 237 |
HSL | 226° | 54.43% | 84.51% |
HSB/HSV | 226° | 18.14% | 92.94% |
CMYK | 18.14% | 13.92% | 0.00% |
7.06% |
HEX | C2 | CC | ED |
Decimal | 194 | 204 | 237 |
Binary | 11000010 | 11001100 | 11101101 |
Octal | 302 | 314 | 355 |
Examples of css and html codes for elements with #C2CCED color. Also use rgb(194,204,237) instead hex code.
.myTextColor { color: #C2CCED; }
<p style="color:#C2CCED">This sample text font color is #C2CCED.</p>
This text font color is #C2CCED.
.myBgColor { background-color: #C2CCED; }
<div style="background-color:#C2CCED">Inner text</div>
This div background color is #C2CCED.
.myBorderColor { border: 1px solid #C2CCED; }
<div style="border:3px solid #C2CCED">Div</div>
This div border color is #C2CCED.
.myOpacity80 { color: #C2CCED; opacity: 0.8; }
<p style="color:#C2CCED;opacity:0.8;">80%</p>
Text with #C2CCED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C2CCED;}
<p style="text-shadow: 3px 3px 1px #C2CCED">Text here.</p>
This text has shadow with #C2CCED color.
.textShadow {text-shadow: 3px 3px 1px #C2CCED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C2CCED, 5px 5px 20px red">Text here.</p>
This text has shadow with #C2CCED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C2CCED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C2CCED, Direction=45, Strength=4)">Text</p>
This text has shadow with #C2CCED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C2CCED; -webkit-box-shadow: 1px 1px 3px 2px #C2CCED; box-shadow: 1px 1px 3px 2px #C2CCED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C2CCED; -webkit-box-shadow: 1px 1px 3px 2px #C2CCED; box-shadow:1px 1px 3px 2px #C2CCED;">
Div content here</div>
This text has color #C2CCED on black background.
This text has color #C2CCED on white background.
This text has black color on #C2CCED background.
This text has white color on #C2CCED background.