HEX: #C6DCDB
RGB: (198,220,219)
#C6DCDB contains red, green and blue colors in about the same proportion. Web safe color of #C6DCDB is #CCCCCC (or #CCC).
#C6DCDB color RGB value is (198,220,219).
RGB: (198,220,219) (78%,86%,86%)
R 198 of 255 = 78%
G 220 of 255 = 86%
B 219 of 255 = 86%
R + G + B ~ 83%. #C6DCDB is quite light color.
R + G + B =
198 + 220 + 219 = 637 (100%)
R 198 of 637 ~ 31.08%
G 220 of 637 ~ 34.54%
B 219 of 637 ~ 34.38%
#C6DCDB color CMYK value is (10,0,0,14).
CMYK: (10,0,0,14) C10M0Y0K14 (10%,0%,0%,14%) (0.10/0.00/0.00/0.14)
C6 | DC | DB | |
---|---|---|---|
RGB | 198 | 220 | 219 |
HSL | 177° | 23.91% | 81.96% |
HSB/HSV | 177° | 10.00% | 86.27% |
CMYK | 10.00% | 0.00% | 0.45% |
13.73% |
HEX | C6 | DC | DB |
Decimal | 198 | 220 | 219 |
Binary | 11000110 | 11011100 | 11011011 |
Octal | 306 | 334 | 333 |
Examples of css and html codes for elements with #C6DCDB color. Also use rgb(198,220,219) instead hex code.
.myTextColor { color: #C6DCDB; }
<p style="color:#C6DCDB">This sample text font color is #C6DCDB.</p>
This text font color is #C6DCDB.
.myBgColor { background-color: #C6DCDB; }
<div style="background-color:#C6DCDB">Inner text</div>
This div background color is #C6DCDB.
.myBorderColor { border: 1px solid #C6DCDB; }
<div style="border:3px solid #C6DCDB">Div</div>
This div border color is #C6DCDB.
.myOpacity80 { color: #C6DCDB; opacity: 0.8; }
<p style="color:#C6DCDB;opacity:0.8;">80%</p>
Text with #C6DCDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C6DCDB;}
<p style="text-shadow: 3px 3px 1px #C6DCDB">Text here.</p>
This text has shadow with #C6DCDB color.
.textShadow {text-shadow: 3px 3px 1px #C6DCDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C6DCDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C6DCDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C6DCDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C6DCDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C6DCDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C6DCDB; -webkit-box-shadow: 1px 1px 3px 2px #C6DCDB; box-shadow: 1px 1px 3px 2px #C6DCDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C6DCDB; -webkit-box-shadow: 1px 1px 3px 2px #C6DCDB; box-shadow:1px 1px 3px 2px #C6DCDB;">
Div content here</div>
This text has color #C6DCDB on black background.
This text has color #C6DCDB on white background.
This text has black color on #C6DCDB background.
This text has white color on #C6DCDB background.