HEX: #D6EECE
RGB: (214,238,206)
#D6EECE contains red, green and blue colors in about the same proportion. Web safe color of #D6EECE is #CCFFCC (or #CFC).
#D6EECE color RGB value is (214,238,206).
RGB: (214,238,206) (84%,93%,81%)
R 214 of 255 = 84%
G 238 of 255 = 93%
B 206 of 255 = 81%
R + G + B ~ 86%. #D6EECE is light color.
R + G + B =
214 + 238 + 206 = 658 (100%)
R 214 of 658 ~ 32.52%
G 238 of 658 ~ 36.17%
B 206 of 658 ~ 31.31%
#D6EECE color CMYK value is (10,0,13,7).
CMYK: (10,0,13,7) C10M0Y13K7 (10%,0%,13%,7%) (0.10/0.00/0.13/0.07)
D6 | EE | CE | |
---|---|---|---|
RGB | 214 | 238 | 206 |
HSL | 105° | 48.48% | 87.06% |
HSB/HSV | 105° | 13.45% | 93.33% |
CMYK | 10.08% | 0.00% | 13.45% |
6.67% |
HEX | D6 | EE | CE |
Decimal | 214 | 238 | 206 |
Binary | 11010110 | 11101110 | 11001110 |
Octal | 326 | 356 | 316 |
Examples of css and html codes for elements with #D6EECE color. Also use rgb(214,238,206) instead hex code.
.myTextColor { color: #D6EECE; }
<p style="color:#D6EECE">This sample text font color is #D6EECE.</p>
This text font color is #D6EECE.
.myBgColor { background-color: #D6EECE; }
<div style="background-color:#D6EECE">Inner text</div>
This div background color is #D6EECE.
.myBorderColor { border: 1px solid #D6EECE; }
<div style="border:3px solid #D6EECE">Div</div>
This div border color is #D6EECE.
.myOpacity80 { color: #D6EECE; opacity: 0.8; }
<p style="color:#D6EECE;opacity:0.8;">80%</p>
Text with #D6EECE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6EECE;}
<p style="text-shadow: 3px 3px 1px #D6EECE">Text here.</p>
This text has shadow with #D6EECE color.
.textShadow {text-shadow: 3px 3px 1px #D6EECE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6EECE, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6EECE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6EECE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6EECE, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6EECE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6EECE; -webkit-box-shadow: 1px 1px 3px 2px #D6EECE; box-shadow: 1px 1px 3px 2px #D6EECE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6EECE; -webkit-box-shadow: 1px 1px 3px 2px #D6EECE; box-shadow:1px 1px 3px 2px #D6EECE;">
Div content here</div>
This text has color #D6EECE on black background.
This text has color #D6EECE on white background.
This text has black color on #D6EECE background.
This text has white color on #D6EECE background.