HEX: #D5ECEF
RGB: (213,236,239)
#D5ECEF contains red, green and blue colors in about the same proportion. Web safe color of #D5ECEF is #CCFFFF (or #CFF).
#D5ECEF color RGB value is (213,236,239).
RGB: (213,236,239) (84%,93%,94%)
R 213 of 255 = 84%
G 236 of 255 = 93%
B 239 of 255 = 94%
R + G + B ~ 90%. #D5ECEF is light color.
R + G + B =
213 + 236 + 239 = 688 (100%)
R 213 of 688 ~ 30.96%
G 236 of 688 ~ 34.3%
B 239 of 688 ~ 34.74%
#D5ECEF color CMYK value is (11,1,0,6).
CMYK: (11,1,0,6) C11M1Y0K6 (11%,1%,0%,6%) (0.11/0.01/0.00/0.06)
D5 | EC | EF | |
---|---|---|---|
RGB | 213 | 236 | 239 |
HSL | 187° | 44.83% | 88.63% |
HSB/HSV | 187° | 10.88% | 93.73% |
CMYK | 10.88% | 1.26% | 0.00% |
6.27% |
HEX | D5 | EC | EF |
Decimal | 213 | 236 | 239 |
Binary | 11010101 | 11101100 | 11101111 |
Octal | 325 | 354 | 357 |
Examples of css and html codes for elements with #D5ECEF color. Also use rgb(213,236,239) instead hex code.
.myTextColor { color: #D5ECEF; }
<p style="color:#D5ECEF">This sample text font color is #D5ECEF.</p>
This text font color is #D5ECEF.
.myBgColor { background-color: #D5ECEF; }
<div style="background-color:#D5ECEF">Inner text</div>
This div background color is #D5ECEF.
.myBorderColor { border: 1px solid #D5ECEF; }
<div style="border:3px solid #D5ECEF">Div</div>
This div border color is #D5ECEF.
.myOpacity80 { color: #D5ECEF; opacity: 0.8; }
<p style="color:#D5ECEF;opacity:0.8;">80%</p>
Text with #D5ECEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5ECEF;}
<p style="text-shadow: 3px 3px 1px #D5ECEF">Text here.</p>
This text has shadow with #D5ECEF color.
.textShadow {text-shadow: 3px 3px 1px #D5ECEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5ECEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5ECEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5ECEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5ECEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5ECEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5ECEF; -webkit-box-shadow: 1px 1px 3px 2px #D5ECEF; box-shadow: 1px 1px 3px 2px #D5ECEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5ECEF; -webkit-box-shadow: 1px 1px 3px 2px #D5ECEF; box-shadow:1px 1px 3px 2px #D5ECEF;">
Div content here</div>
This text has color #D5ECEF on black background.
This text has color #D5ECEF on white background.
This text has black color on #D5ECEF background.
This text has white color on #D5ECEF background.