HEX: #DEE6EE
RGB: (222,230,238)
#DEE6EE contains red, green and blue colors in about the same proportion. Web safe color of #DEE6EE is #CCCCFF (or #CCF).
#DEE6EE color RGB value is (222,230,238).
RGB: (222,230,238) (87%,90%,93%)
R 222 of 255 = 87%
G 230 of 255 = 90%
B 238 of 255 = 93%
R + G + B ~ 90%. #DEE6EE is light color.
R + G + B =
222 + 230 + 238 = 690 (100%)
R 222 of 690 ~ 32.17%
G 230 of 690 ~ 33.33%
B 238 of 690 ~ 34.49%
#DEE6EE color CMYK value is (7,3,0,7).
CMYK: (7,3,0,7) C7M3Y0K7 (7%,3%,0%,7%) (0.07/0.03/0.00/0.07)
DE | E6 | EE | |
---|---|---|---|
RGB | 222 | 230 | 238 |
HSL | 210° | 32.00% | 90.20% |
HSB/HSV | 210° | 6.72% | 93.33% |
CMYK | 6.72% | 3.36% | 0.00% |
6.67% |
HEX | DE | E6 | EE |
Decimal | 222 | 230 | 238 |
Binary | 11011110 | 11100110 | 11101110 |
Octal | 336 | 346 | 356 |
Examples of css and html codes for elements with #DEE6EE color. Also use rgb(222,230,238) instead hex code.
.myTextColor { color: #DEE6EE; }
<p style="color:#DEE6EE">This sample text font color is #DEE6EE.</p>
This text font color is #DEE6EE.
.myBgColor { background-color: #DEE6EE; }
<div style="background-color:#DEE6EE">Inner text</div>
This div background color is #DEE6EE.
.myBorderColor { border: 1px solid #DEE6EE; }
<div style="border:3px solid #DEE6EE">Div</div>
This div border color is #DEE6EE.
.myOpacity80 { color: #DEE6EE; opacity: 0.8; }
<p style="color:#DEE6EE;opacity:0.8;">80%</p>
Text with #DEE6EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DEE6EE;}
<p style="text-shadow: 3px 3px 1px #DEE6EE">Text here.</p>
This text has shadow with #DEE6EE color.
.textShadow {text-shadow: 3px 3px 1px #DEE6EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DEE6EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #DEE6EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DEE6EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DEE6EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #DEE6EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DEE6EE; -webkit-box-shadow: 1px 1px 3px 2px #DEE6EE; box-shadow: 1px 1px 3px 2px #DEE6EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DEE6EE; -webkit-box-shadow: 1px 1px 3px 2px #DEE6EE; box-shadow:1px 1px 3px 2px #DEE6EE;">
Div content here</div>
This text has color #DEE6EE on black background.
This text has color #DEE6EE on white background.
This text has black color on #DEE6EE background.
This text has white color on #DEE6EE background.