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