HEX: #C6DDEF
RGB: (198,221,239)
#C6DDEF contains red, green and blue colors in about the same proportion. Web safe color of #C6DDEF is #CCCCFF (or #CCF).
#C6DDEF color RGB value is (198,221,239).
RGB: (198,221,239) (78%,87%,94%)
R 198 of 255 = 78%
G 221 of 255 = 87%
B 239 of 255 = 94%
R + G + B ~ 86%. #C6DDEF is light color.
R + G + B =
198 + 221 + 239 = 658 (100%)
R 198 of 658 ~ 30.09%
G 221 of 658 ~ 33.59%
B 239 of 658 ~ 36.32%
#C6DDEF color CMYK value is (17,8,0,6).
CMYK: (17,8,0,6) C17M8Y0K6 (17%,8%,0%,6%) (0.17/0.08/0.00/0.06)
C6 | DD | EF | |
---|---|---|---|
RGB | 198 | 221 | 239 |
HSL | 206° | 56.16% | 85.69% |
HSB/HSV | 206° | 17.15% | 93.73% |
CMYK | 17.15% | 7.53% | 0.00% |
6.27% |
HEX | C6 | DD | EF |
Decimal | 198 | 221 | 239 |
Binary | 11000110 | 11011101 | 11101111 |
Octal | 306 | 335 | 357 |
Examples of css and html codes for elements with #C6DDEF color. Also use rgb(198,221,239) instead hex code.
.myTextColor { color: #C6DDEF; }
<p style="color:#C6DDEF">This sample text font color is #C6DDEF.</p>
This text font color is #C6DDEF.
.myBgColor { background-color: #C6DDEF; }
<div style="background-color:#C6DDEF">Inner text</div>
This div background color is #C6DDEF.
.myBorderColor { border: 1px solid #C6DDEF; }
<div style="border:3px solid #C6DDEF">Div</div>
This div border color is #C6DDEF.
.myOpacity80 { color: #C6DDEF; opacity: 0.8; }
<p style="color:#C6DDEF;opacity:0.8;">80%</p>
Text with #C6DDEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6DDEF;}
<p style="text-shadow: 3px 3px 1px #C6DDEF">Text here.</p>
This text has shadow with #C6DDEF color.
.textShadow {text-shadow: 3px 3px 1px #C6DDEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6DDEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6DDEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6DDEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6DDEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6DDEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6DDEF; -webkit-box-shadow: 1px 1px 3px 2px #C6DDEF; box-shadow: 1px 1px 3px 2px #C6DDEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6DDEF; -webkit-box-shadow: 1px 1px 3px 2px #C6DDEF; box-shadow:1px 1px 3px 2px #C6DDEF;">
Div content here</div>
This text has color #C6DDEF on black background.
This text has color #C6DDEF on white background.
This text has black color on #C6DDEF background.
This text has white color on #C6DDEF background.