HEX: #D9EBEC
RGB: (217,235,236)
#D9EBEC contains red, green and blue colors in about the same proportion. Web safe color of #D9EBEC is #CCFFFF (or #CFF).
#D9EBEC color RGB value is (217,235,236).
RGB: (217,235,236) (85%,92%,93%)
R 217 of 255 = 85%
G 235 of 255 = 92%
B 236 of 255 = 93%
R + G + B ~ 90%. #D9EBEC is light color.
R + G + B =
217 + 235 + 236 = 688 (100%)
R 217 of 688 ~ 31.54%
G 235 of 688 ~ 34.16%
B 236 of 688 ~ 34.3%
#D9EBEC color CMYK value is (8,0,0,7).
CMYK: (8,0,0,7) C8M0Y0K7 (8%,0%,0%,7%) (0.08/0.00/0.00/0.07)
D9 | EB | EC | |
---|---|---|---|
RGB | 217 | 235 | 236 |
HSL | 183° | 33.33% | 88.82% |
HSB/HSV | 183° | 8.05% | 92.55% |
CMYK | 8.05% | 0.42% | 0.00% |
7.45% |
HEX | D9 | EB | EC |
Decimal | 217 | 235 | 236 |
Binary | 11011001 | 11101011 | 11101100 |
Octal | 331 | 353 | 354 |
Examples of css and html codes for elements with #D9EBEC color. Also use rgb(217,235,236) instead hex code.
.myTextColor { color: #D9EBEC; }
<p style="color:#D9EBEC">This sample text font color is #D9EBEC.</p>
This text font color is #D9EBEC.
.myBgColor { background-color: #D9EBEC; }
<div style="background-color:#D9EBEC">Inner text</div>
This div background color is #D9EBEC.
.myBorderColor { border: 1px solid #D9EBEC; }
<div style="border:3px solid #D9EBEC">Div</div>
This div border color is #D9EBEC.
.myOpacity80 { color: #D9EBEC; opacity: 0.8; }
<p style="color:#D9EBEC;opacity:0.8;">80%</p>
Text with #D9EBEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D9EBEC;}
<p style="text-shadow: 3px 3px 1px #D9EBEC">Text here.</p>
This text has shadow with #D9EBEC color.
.textShadow {text-shadow: 3px 3px 1px #D9EBEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D9EBEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D9EBEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D9EBEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D9EBEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D9EBEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D9EBEC; -webkit-box-shadow: 1px 1px 3px 2px #D9EBEC; box-shadow: 1px 1px 3px 2px #D9EBEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D9EBEC; -webkit-box-shadow: 1px 1px 3px 2px #D9EBEC; box-shadow:1px 1px 3px 2px #D9EBEC;">
Div content here</div>
This text has color #D9EBEC on black background.
This text has color #D9EBEC on white background.
This text has black color on #D9EBEC background.
This text has white color on #D9EBEC background.