HEX: #D4EDCE
RGB: (212,237,206)
#D4EDCE contains red, green and blue colors in about the same proportion. Web safe color of #D4EDCE is #CCFFCC (or #CFC).
#D4EDCE color RGB value is (212,237,206).
RGB: (212,237,206) (83%,93%,81%)
R 212 of 255 = 83%
G 237 of 255 = 93%
B 206 of 255 = 81%
R + G + B ~ 86%. #D4EDCE is light color.
R + G + B =
212 + 237 + 206 = 655 (100%)
R 212 of 655 ~ 32.37%
G 237 of 655 ~ 36.18%
B 206 of 655 ~ 31.45%
#D4EDCE color CMYK value is (11,0,13,7).
CMYK: (11,0,13,7) C11M0Y13K7 (11%,0%,13%,7%) (0.11/0.00/0.13/0.07)
D4 | ED | CE | |
---|---|---|---|
RGB | 212 | 237 | 206 |
HSL | 108° | 46.27% | 86.86% |
HSB/HSV | 108° | 13.08% | 92.94% |
CMYK | 10.55% | 0.00% | 13.08% |
7.06% |
HEX | D4 | ED | CE |
Decimal | 212 | 237 | 206 |
Binary | 11010100 | 11101101 | 11001110 |
Octal | 324 | 355 | 316 |
Examples of css and html codes for elements with #D4EDCE color. Also use rgb(212,237,206) instead hex code.
.myTextColor { color: #D4EDCE; }
<p style="color:#D4EDCE">This sample text font color is #D4EDCE.</p>
This text font color is #D4EDCE.
.myBgColor { background-color: #D4EDCE; }
<div style="background-color:#D4EDCE">Inner text</div>
This div background color is #D4EDCE.
.myBorderColor { border: 1px solid #D4EDCE; }
<div style="border:3px solid #D4EDCE">Div</div>
This div border color is #D4EDCE.
.myOpacity80 { color: #D4EDCE; opacity: 0.8; }
<p style="color:#D4EDCE;opacity:0.8;">80%</p>
Text with #D4EDCE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D4EDCE;}
<p style="text-shadow: 3px 3px 1px #D4EDCE">Text here.</p>
This text has shadow with #D4EDCE color.
.textShadow {text-shadow: 3px 3px 1px #D4EDCE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D4EDCE, 5px 5px 20px red">Text here.</p>
This text has shadow with #D4EDCE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D4EDCE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D4EDCE, Direction=45, Strength=4)">Text</p>
This text has shadow with #D4EDCE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D4EDCE; -webkit-box-shadow: 1px 1px 3px 2px #D4EDCE; box-shadow: 1px 1px 3px 2px #D4EDCE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D4EDCE; -webkit-box-shadow: 1px 1px 3px 2px #D4EDCE; box-shadow:1px 1px 3px 2px #D4EDCE;">
Div content here</div>
This text has color #D4EDCE on black background.
This text has color #D4EDCE on white background.
This text has black color on #D4EDCE background.
This text has white color on #D4EDCE background.