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