HEX: #D5EAEE
RGB: (213,234,238)
#D5EAEE contains red, green and blue colors in about the same proportion. Web safe color of #D5EAEE is #CCFFFF (or #CFF).
#D5EAEE color RGB value is (213,234,238).
RGB: (213,234,238) (84%,92%,93%)
R 213 of 255 = 84%
G 234 of 255 = 92%
B 238 of 255 = 93%
R + G + B ~ 90%. #D5EAEE is light color.
R + G + B =
213 + 234 + 238 = 685 (100%)
R 213 of 685 ~ 31.09%
G 234 of 685 ~ 34.16%
B 238 of 685 ~ 34.74%
#D5EAEE color CMYK value is (11,2,0,7).
CMYK: (11,2,0,7) C11M2Y0K7 (11%,2%,0%,7%) (0.11/0.02/0.00/0.07)
D5 | EA | EE | |
---|---|---|---|
RGB | 213 | 234 | 238 |
HSL | 190° | 42.37% | 88.43% |
HSB/HSV | 190° | 10.50% | 93.33% |
CMYK | 10.50% | 1.68% | 0.00% |
6.67% |
HEX | D5 | EA | EE |
Decimal | 213 | 234 | 238 |
Binary | 11010101 | 11101010 | 11101110 |
Octal | 325 | 352 | 356 |
Examples of css and html codes for elements with #D5EAEE color. Also use rgb(213,234,238) instead hex code.
.myTextColor { color: #D5EAEE; }
<p style="color:#D5EAEE">This sample text font color is #D5EAEE.</p>
This text font color is #D5EAEE.
.myBgColor { background-color: #D5EAEE; }
<div style="background-color:#D5EAEE">Inner text</div>
This div background color is #D5EAEE.
.myBorderColor { border: 1px solid #D5EAEE; }
<div style="border:3px solid #D5EAEE">Div</div>
This div border color is #D5EAEE.
.myOpacity80 { color: #D5EAEE; opacity: 0.8; }
<p style="color:#D5EAEE;opacity:0.8;">80%</p>
Text with #D5EAEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5EAEE;}
<p style="text-shadow: 3px 3px 1px #D5EAEE">Text here.</p>
This text has shadow with #D5EAEE color.
.textShadow {text-shadow: 3px 3px 1px #D5EAEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5EAEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5EAEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5EAEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5EAEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5EAEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5EAEE; -webkit-box-shadow: 1px 1px 3px 2px #D5EAEE; box-shadow: 1px 1px 3px 2px #D5EAEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5EAEE; -webkit-box-shadow: 1px 1px 3px 2px #D5EAEE; box-shadow:1px 1px 3px 2px #D5EAEE;">
Div content here</div>
This text has color #D5EAEE on black background.
This text has color #D5EAEE on white background.
This text has black color on #D5EAEE background.
This text has white color on #D5EAEE background.