HEX: #DFE2EC
RGB: (223,226,236)
#DFE2EC contains red, green and blue colors in about the same proportion. Web safe color of #DFE2EC is #CCCCFF (or #CCF).
#DFE2EC color RGB value is (223,226,236).
RGB: (223,226,236) (87%,89%,93%)
R 223 of 255 = 87%
G 226 of 255 = 89%
B 236 of 255 = 93%
R + G + B ~ 90%. #DFE2EC is light color.
R + G + B =
223 + 226 + 236 = 685 (100%)
R 223 of 685 ~ 32.55%
G 226 of 685 ~ 32.99%
B 236 of 685 ~ 34.45%
#DFE2EC color CMYK value is (6,4,0,7).
CMYK: (6,4,0,7) C6M4Y0K7 (6%,4%,0%,7%) (0.06/0.04/0.00/0.07)
DF | E2 | EC | |
---|---|---|---|
RGB | 223 | 226 | 236 |
HSL | 226° | 25.49% | 90.00% |
HSB/HSV | 226° | 5.51% | 92.55% |
CMYK | 5.51% | 4.24% | 0.00% |
7.45% |
HEX | DF | E2 | EC |
Decimal | 223 | 226 | 236 |
Binary | 11011111 | 11100010 | 11101100 |
Octal | 337 | 342 | 354 |
Examples of css and html codes for elements with #DFE2EC color. Also use rgb(223,226,236) instead hex code.
.myTextColor { color: #DFE2EC; }
<p style="color:#DFE2EC">This sample text font color is #DFE2EC.</p>
This text font color is #DFE2EC.
.myBgColor { background-color: #DFE2EC; }
<div style="background-color:#DFE2EC">Inner text</div>
This div background color is #DFE2EC.
.myBorderColor { border: 1px solid #DFE2EC; }
<div style="border:3px solid #DFE2EC">Div</div>
This div border color is #DFE2EC.
.myOpacity80 { color: #DFE2EC; opacity: 0.8; }
<p style="color:#DFE2EC;opacity:0.8;">80%</p>
Text with #DFE2EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DFE2EC;}
<p style="text-shadow: 3px 3px 1px #DFE2EC">Text here.</p>
This text has shadow with #DFE2EC color.
.textShadow {text-shadow: 3px 3px 1px #DFE2EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DFE2EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #DFE2EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DFE2EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DFE2EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #DFE2EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DFE2EC; -webkit-box-shadow: 1px 1px 3px 2px #DFE2EC; box-shadow: 1px 1px 3px 2px #DFE2EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DFE2EC; -webkit-box-shadow: 1px 1px 3px 2px #DFE2EC; box-shadow:1px 1px 3px 2px #DFE2EC;">
Div content here</div>
This text has color #DFE2EC on black background.
This text has color #DFE2EC on white background.
This text has black color on #DFE2EC background.
This text has white color on #DFE2EC background.