HEX: #D4DCEC
RGB: (212,220,236)
#D4DCEC contains red, green and blue colors in about the same proportion. Web safe color of #D4DCEC is #CCCCFF (or #CCF).
#D4DCEC color RGB value is (212,220,236).
RGB: (212,220,236) (83%,86%,93%)
R 212 of 255 = 83%
G 220 of 255 = 86%
B 236 of 255 = 93%
R + G + B ~ 87%. #D4DCEC is light color.
R + G + B =
212 + 220 + 236 = 668 (100%)
R 212 of 668 ~ 31.74%
G 220 of 668 ~ 32.93%
B 236 of 668 ~ 35.33%
#D4DCEC color CMYK value is (10,7,0,7).
CMYK: (10,7,0,7) C10M7Y0K7 (10%,7%,0%,7%) (0.10/0.07/0.00/0.07)
D4 | DC | EC | |
---|---|---|---|
RGB | 212 | 220 | 236 |
HSL | 220° | 38.71% | 87.84% |
HSB/HSV | 220° | 10.17% | 92.55% |
CMYK | 10.17% | 6.78% | 0.00% |
7.45% |
HEX | D4 | DC | EC |
Decimal | 212 | 220 | 236 |
Binary | 11010100 | 11011100 | 11101100 |
Octal | 324 | 334 | 354 |
Examples of css and html codes for elements with #D4DCEC color. Also use rgb(212,220,236) instead hex code.
.myTextColor { color: #D4DCEC; }
<p style="color:#D4DCEC">This sample text font color is #D4DCEC.</p>
This text font color is #D4DCEC.
.myBgColor { background-color: #D4DCEC; }
<div style="background-color:#D4DCEC">Inner text</div>
This div background color is #D4DCEC.
.myBorderColor { border: 1px solid #D4DCEC; }
<div style="border:3px solid #D4DCEC">Div</div>
This div border color is #D4DCEC.
.myOpacity80 { color: #D4DCEC; opacity: 0.8; }
<p style="color:#D4DCEC;opacity:0.8;">80%</p>
Text with #D4DCEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D4DCEC;}
<p style="text-shadow: 3px 3px 1px #D4DCEC">Text here.</p>
This text has shadow with #D4DCEC color.
.textShadow {text-shadow: 3px 3px 1px #D4DCEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D4DCEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D4DCEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D4DCEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D4DCEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D4DCEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D4DCEC; -webkit-box-shadow: 1px 1px 3px 2px #D4DCEC; box-shadow: 1px 1px 3px 2px #D4DCEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D4DCEC; -webkit-box-shadow: 1px 1px 3px 2px #D4DCEC; box-shadow:1px 1px 3px 2px #D4DCEC;">
Div content here</div>
This text has color #D4DCEC on black background.
This text has color #D4DCEC on white background.
This text has black color on #D4DCEC background.
This text has white color on #D4DCEC background.