HEX: #D5E9DB
RGB: (213,233,219)
#D5E9DB contains red, green and blue colors in about the same proportion. Web safe color of #D5E9DB is #CCFFCC (or #CFC).
#D5E9DB color RGB value is (213,233,219).
RGB: (213,233,219) (84%,91%,86%)
R 213 of 255 = 84%
G 233 of 255 = 91%
B 219 of 255 = 86%
R + G + B ~ 87%. #D5E9DB is light color.
R + G + B =
213 + 233 + 219 = 665 (100%)
R 213 of 665 ~ 32.03%
G 233 of 665 ~ 35.04%
B 219 of 665 ~ 32.93%
#D5E9DB color CMYK value is (9,0,6,9).
CMYK: (9,0,6,9) C9M0Y6K9 (9%,0%,6%,9%) (0.09/0.00/0.06/0.09)
D5 | E9 | DB | |
---|---|---|---|
RGB | 213 | 233 | 219 |
HSL | 138° | 31.25% | 87.45% |
HSB/HSV | 138° | 8.58% | 91.37% |
CMYK | 8.58% | 0.00% | 6.01% |
8.63% |
HEX | D5 | E9 | DB |
Decimal | 213 | 233 | 219 |
Binary | 11010101 | 11101001 | 11011011 |
Octal | 325 | 351 | 333 |
Examples of css and html codes for elements with #D5E9DB color. Also use rgb(213,233,219) instead hex code.
.myTextColor { color: #D5E9DB; }
<p style="color:#D5E9DB">This sample text font color is #D5E9DB.</p>
This text font color is #D5E9DB.
.myBgColor { background-color: #D5E9DB; }
<div style="background-color:#D5E9DB">Inner text</div>
This div background color is #D5E9DB.
.myBorderColor { border: 1px solid #D5E9DB; }
<div style="border:3px solid #D5E9DB">Div</div>
This div border color is #D5E9DB.
.myOpacity80 { color: #D5E9DB; opacity: 0.8; }
<p style="color:#D5E9DB;opacity:0.8;">80%</p>
Text with #D5E9DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5E9DB;}
<p style="text-shadow: 3px 3px 1px #D5E9DB">Text here.</p>
This text has shadow with #D5E9DB color.
.textShadow {text-shadow: 3px 3px 1px #D5E9DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5E9DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5E9DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5E9DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5E9DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5E9DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5E9DB; -webkit-box-shadow: 1px 1px 3px 2px #D5E9DB; box-shadow: 1px 1px 3px 2px #D5E9DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5E9DB; -webkit-box-shadow: 1px 1px 3px 2px #D5E9DB; box-shadow:1px 1px 3px 2px #D5E9DB;">
Div content here</div>
This text has color #D5E9DB on black background.
This text has color #D5E9DB on white background.
This text has black color on #D5E9DB background.
This text has white color on #D5E9DB background.