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