HEX: #D5E9EC
RGB: (213,233,236)
#D5E9EC contains red, green and blue colors in about the same proportion. Web safe color of #D5E9EC is #CCFFFF (or #CFF).
#D5E9EC color RGB value is (213,233,236).
RGB: (213,233,236) (84%,91%,93%)
R 213 of 255 = 84%
G 233 of 255 = 91%
B 236 of 255 = 93%
R + G + B ~ 89%. #D5E9EC is light color.
R + G + B =
213 + 233 + 236 = 682 (100%)
R 213 of 682 ~ 31.23%
G 233 of 682 ~ 34.16%
B 236 of 682 ~ 34.6%
#D5E9EC color CMYK value is (10,1,0,7).
CMYK: (10,1,0,7) C10M1Y0K7 (10%,1%,0%,7%) (0.10/0.01/0.00/0.07)
D5 | E9 | EC | |
---|---|---|---|
RGB | 213 | 233 | 236 |
HSL | 188° | 37.70% | 88.04% |
HSB/HSV | 188° | 9.75% | 92.55% |
CMYK | 9.75% | 1.27% | 0.00% |
7.45% |
HEX | D5 | E9 | EC |
Decimal | 213 | 233 | 236 |
Binary | 11010101 | 11101001 | 11101100 |
Octal | 325 | 351 | 354 |
Examples of css and html codes for elements with #D5E9EC color. Also use rgb(213,233,236) instead hex code.
.myTextColor { color: #D5E9EC; }
<p style="color:#D5E9EC">This sample text font color is #D5E9EC.</p>
This text font color is #D5E9EC.
.myBgColor { background-color: #D5E9EC; }
<div style="background-color:#D5E9EC">Inner text</div>
This div background color is #D5E9EC.
.myBorderColor { border: 1px solid #D5E9EC; }
<div style="border:3px solid #D5E9EC">Div</div>
This div border color is #D5E9EC.
.myOpacity80 { color: #D5E9EC; opacity: 0.8; }
<p style="color:#D5E9EC;opacity:0.8;">80%</p>
Text with #D5E9EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5E9EC;}
<p style="text-shadow: 3px 3px 1px #D5E9EC">Text here.</p>
This text has shadow with #D5E9EC color.
.textShadow {text-shadow: 3px 3px 1px #D5E9EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5E9EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5E9EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5E9EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5E9EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5E9EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5E9EC; -webkit-box-shadow: 1px 1px 3px 2px #D5E9EC; box-shadow: 1px 1px 3px 2px #D5E9EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5E9EC; -webkit-box-shadow: 1px 1px 3px 2px #D5E9EC; box-shadow:1px 1px 3px 2px #D5E9EC;">
Div content here</div>
This text has color #D5E9EC on black background.
This text has color #D5E9EC on white background.
This text has black color on #D5E9EC background.
This text has white color on #D5E9EC background.