HEX: #DCE9EE
RGB: (220,233,238)
#DCE9EE contains red, green and blue colors in about the same proportion. Web safe color of #DCE9EE is #CCFFFF (or #CFF).
#DCE9EE color RGB value is (220,233,238).
RGB: (220,233,238) (86%,91%,93%)
R 220 of 255 = 86%
G 233 of 255 = 91%
B 238 of 255 = 93%
R + G + B ~ 90%. #DCE9EE is light color.
R + G + B =
220 + 233 + 238 = 691 (100%)
R 220 of 691 ~ 31.84%
G 233 of 691 ~ 33.72%
B 238 of 691 ~ 34.44%
#DCE9EE color CMYK value is (8,2,0,7).
CMYK: (8,2,0,7) C8M2Y0K7 (8%,2%,0%,7%) (0.08/0.02/0.00/0.07)
DC | E9 | EE | |
---|---|---|---|
RGB | 220 | 233 | 238 |
HSL | 197° | 34.62% | 89.80% |
HSB/HSV | 197° | 7.56% | 93.33% |
CMYK | 7.56% | 2.10% | 0.00% |
6.67% |
HEX | DC | E9 | EE |
Decimal | 220 | 233 | 238 |
Binary | 11011100 | 11101001 | 11101110 |
Octal | 334 | 351 | 356 |
Examples of css and html codes for elements with #DCE9EE color. Also use rgb(220,233,238) instead hex code.
.myTextColor { color: #DCE9EE; }
<p style="color:#DCE9EE">This sample text font color is #DCE9EE.</p>
This text font color is #DCE9EE.
.myBgColor { background-color: #DCE9EE; }
<div style="background-color:#DCE9EE">Inner text</div>
This div background color is #DCE9EE.
.myBorderColor { border: 1px solid #DCE9EE; }
<div style="border:3px solid #DCE9EE">Div</div>
This div border color is #DCE9EE.
.myOpacity80 { color: #DCE9EE; opacity: 0.8; }
<p style="color:#DCE9EE;opacity:0.8;">80%</p>
Text with #DCE9EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DCE9EE;}
<p style="text-shadow: 3px 3px 1px #DCE9EE">Text here.</p>
This text has shadow with #DCE9EE color.
.textShadow {text-shadow: 3px 3px 1px #DCE9EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DCE9EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #DCE9EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DCE9EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DCE9EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #DCE9EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DCE9EE; -webkit-box-shadow: 1px 1px 3px 2px #DCE9EE; box-shadow: 1px 1px 3px 2px #DCE9EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DCE9EE; -webkit-box-shadow: 1px 1px 3px 2px #DCE9EE; box-shadow:1px 1px 3px 2px #DCE9EE;">
Div content here</div>
This text has color #DCE9EE on black background.
This text has color #DCE9EE on white background.
This text has black color on #DCE9EE background.
This text has white color on #DCE9EE background.