HEX: #DEE9ED
RGB: (222,233,237)
#DEE9ED contains red, green and blue colors in about the same proportion. Web safe color of #DEE9ED is #CCFFFF (or #CFF).
#DEE9ED color RGB value is (222,233,237).
RGB: (222,233,237) (87%,91%,93%)
R 222 of 255 = 87%
G 233 of 255 = 91%
B 237 of 255 = 93%
R + G + B ~ 90%. #DEE9ED is light color.
R + G + B =
222 + 233 + 237 = 692 (100%)
R 222 of 692 ~ 32.08%
G 233 of 692 ~ 33.67%
B 237 of 692 ~ 34.25%
#DEE9ED color CMYK value is (6,2,0,7).
CMYK: (6,2,0,7) C6M2Y0K7 (6%,2%,0%,7%) (0.06/0.02/0.00/0.07)
DE | E9 | ED | |
---|---|---|---|
RGB | 222 | 233 | 237 |
HSL | 196° | 29.41% | 90.00% |
HSB/HSV | 196° | 6.33% | 92.94% |
CMYK | 6.33% | 1.69% | 0.00% |
7.06% |
HEX | DE | E9 | ED |
Decimal | 222 | 233 | 237 |
Binary | 11011110 | 11101001 | 11101101 |
Octal | 336 | 351 | 355 |
Examples of css and html codes for elements with #DEE9ED color. Also use rgb(222,233,237) instead hex code.
.myTextColor { color: #DEE9ED; }
<p style="color:#DEE9ED">This sample text font color is #DEE9ED.</p>
This text font color is #DEE9ED.
.myBgColor { background-color: #DEE9ED; }
<div style="background-color:#DEE9ED">Inner text</div>
This div background color is #DEE9ED.
.myBorderColor { border: 1px solid #DEE9ED; }
<div style="border:3px solid #DEE9ED">Div</div>
This div border color is #DEE9ED.
.myOpacity80 { color: #DEE9ED; opacity: 0.8; }
<p style="color:#DEE9ED;opacity:0.8;">80%</p>
Text with #DEE9ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DEE9ED;}
<p style="text-shadow: 3px 3px 1px #DEE9ED">Text here.</p>
This text has shadow with #DEE9ED color.
.textShadow {text-shadow: 3px 3px 1px #DEE9ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DEE9ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #DEE9ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DEE9ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DEE9ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #DEE9ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DEE9ED; -webkit-box-shadow: 1px 1px 3px 2px #DEE9ED; box-shadow: 1px 1px 3px 2px #DEE9ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DEE9ED; -webkit-box-shadow: 1px 1px 3px 2px #DEE9ED; box-shadow:1px 1px 3px 2px #DEE9ED;">
Div content here</div>
This text has color #DEE9ED on black background.
This text has color #DEE9ED on white background.
This text has black color on #DEE9ED background.
This text has white color on #DEE9ED background.