HEX: #C6DEDC
RGB: (198,222,220)
#C6DEDC contains red, green and blue colors in about the same proportion. Web safe color of #C6DEDC is #CCCCCC (or #CCC).
#C6DEDC color RGB value is (198,222,220).
RGB: (198,222,220) (78%,87%,86%)
R 198 of 255 = 78%
G 222 of 255 = 87%
B 220 of 255 = 86%
R + G + B ~ 84%. #C6DEDC is quite light color.
R + G + B =
198 + 222 + 220 = 640 (100%)
R 198 of 640 ~ 30.94%
G 222 of 640 ~ 34.69%
B 220 of 640 ~ 34.38%
#C6DEDC color CMYK value is (11,0,1,13).
CMYK: (11,0,1,13) C11M0Y1K13 (11%,0%,1%,13%) (0.11/0.00/0.01/0.13)
C6 | DE | DC | |
---|---|---|---|
RGB | 198 | 222 | 220 |
HSL | 175° | 26.67% | 82.35% |
HSB/HSV | 175° | 10.81% | 87.06% |
CMYK | 10.81% | 0.00% | 0.90% |
12.94% |
HEX | C6 | DE | DC |
Decimal | 198 | 222 | 220 |
Binary | 11000110 | 11011110 | 11011100 |
Octal | 306 | 336 | 334 |
Examples of css and html codes for elements with #C6DEDC color. Also use rgb(198,222,220) instead hex code.
.myTextColor { color: #C6DEDC; }
<p style="color:#C6DEDC">This sample text font color is #C6DEDC.</p>
This text font color is #C6DEDC.
.myBgColor { background-color: #C6DEDC; }
<div style="background-color:#C6DEDC">Inner text</div>
This div background color is #C6DEDC.
.myBorderColor { border: 1px solid #C6DEDC; }
<div style="border:3px solid #C6DEDC">Div</div>
This div border color is #C6DEDC.
.myOpacity80 { color: #C6DEDC; opacity: 0.8; }
<p style="color:#C6DEDC;opacity:0.8;">80%</p>
Text with #C6DEDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6DEDC;}
<p style="text-shadow: 3px 3px 1px #C6DEDC">Text here.</p>
This text has shadow with #C6DEDC color.
.textShadow {text-shadow: 3px 3px 1px #C6DEDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6DEDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6DEDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6DEDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6DEDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6DEDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6DEDC; -webkit-box-shadow: 1px 1px 3px 2px #C6DEDC; box-shadow: 1px 1px 3px 2px #C6DEDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6DEDC; -webkit-box-shadow: 1px 1px 3px 2px #C6DEDC; box-shadow:1px 1px 3px 2px #C6DEDC;">
Div content here</div>
This text has color #C6DEDC on black background.
This text has color #C6DEDC on white background.
This text has black color on #C6DEDC background.
This text has white color on #C6DEDC background.