HEX: #D6E9CC
RGB: (214,233,204)
#D6E9CC contains red, green and blue colors in about the same proportion. Web safe color of #D6E9CC is #CCFFCC (or #CFC).
#D6E9CC color RGB value is (214,233,204).
RGB: (214,233,204) (84%,91%,80%)
R 214 of 255 = 84%
G 233 of 255 = 91%
B 204 of 255 = 80%
R + G + B ~ 85%. #D6E9CC is quite light color.
R + G + B =
214 + 233 + 204 = 651 (100%)
R 214 of 651 ~ 32.87%
G 233 of 651 ~ 35.79%
B 204 of 651 ~ 31.34%
#D6E9CC color CMYK value is (8,0,12,9).
CMYK: (8,0,12,9) C8M0Y12K9 (8%,0%,12%,9%) (0.08/0.00/0.12/0.09)
D6 | E9 | CC | |
---|---|---|---|
RGB | 214 | 233 | 204 |
HSL | 99° | 39.73% | 85.69% |
HSB/HSV | 99° | 12.45% | 91.37% |
CMYK | 8.15% | 0.00% | 12.45% |
8.63% |
HEX | D6 | E9 | CC |
Decimal | 214 | 233 | 204 |
Binary | 11010110 | 11101001 | 11001100 |
Octal | 326 | 351 | 314 |
Examples of css and html codes for elements with #D6E9CC color. Also use rgb(214,233,204) instead hex code.
.myTextColor { color: #D6E9CC; }
<p style="color:#D6E9CC">This sample text font color is #D6E9CC.</p>
This text font color is #D6E9CC.
.myBgColor { background-color: #D6E9CC; }
<div style="background-color:#D6E9CC">Inner text</div>
This div background color is #D6E9CC.
.myBorderColor { border: 1px solid #D6E9CC; }
<div style="border:3px solid #D6E9CC">Div</div>
This div border color is #D6E9CC.
.myOpacity80 { color: #D6E9CC; opacity: 0.8; }
<p style="color:#D6E9CC;opacity:0.8;">80%</p>
Text with #D6E9CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6E9CC;}
<p style="text-shadow: 3px 3px 1px #D6E9CC">Text here.</p>
This text has shadow with #D6E9CC color.
.textShadow {text-shadow: 3px 3px 1px #D6E9CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6E9CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6E9CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6E9CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6E9CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6E9CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6E9CC; -webkit-box-shadow: 1px 1px 3px 2px #D6E9CC; box-shadow: 1px 1px 3px 2px #D6E9CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6E9CC; -webkit-box-shadow: 1px 1px 3px 2px #D6E9CC; box-shadow:1px 1px 3px 2px #D6E9CC;">
Div content here</div>
This text has color #D6E9CC on black background.
This text has color #D6E9CC on white background.
This text has black color on #D6E9CC background.
This text has white color on #D6E9CC background.