HEX: #DDE1EC
RGB: (221,225,236)
#DDE1EC contains red, green and blue colors in about the same proportion. Web safe color of #DDE1EC is #CCCCFF (or #CCF).
#DDE1EC color RGB value is (221,225,236).
RGB: (221,225,236) (87%,88%,93%)
R 221 of 255 = 87%
G 225 of 255 = 88%
B 236 of 255 = 93%
R + G + B ~ 89%. #DDE1EC is light color.
R + G + B =
221 + 225 + 236 = 682 (100%)
R 221 of 682 ~ 32.4%
G 225 of 682 ~ 32.99%
B 236 of 682 ~ 34.6%
#DDE1EC color CMYK value is (6,5,0,7).
CMYK: (6,5,0,7) C6M5Y0K7 (6%,5%,0%,7%) (0.06/0.05/0.00/0.07)
DD | E1 | EC | |
---|---|---|---|
RGB | 221 | 225 | 236 |
HSL | 224° | 28.30% | 89.61% |
HSB/HSV | 224° | 6.36% | 92.55% |
CMYK | 6.36% | 4.66% | 0.00% |
7.45% |
HEX | DD | E1 | EC |
Decimal | 221 | 225 | 236 |
Binary | 11011101 | 11100001 | 11101100 |
Octal | 335 | 341 | 354 |
Examples of css and html codes for elements with #DDE1EC color. Also use rgb(221,225,236) instead hex code.
.myTextColor { color: #DDE1EC; }
<p style="color:#DDE1EC">This sample text font color is #DDE1EC.</p>
This text font color is #DDE1EC.
.myBgColor { background-color: #DDE1EC; }
<div style="background-color:#DDE1EC">Inner text</div>
This div background color is #DDE1EC.
.myBorderColor { border: 1px solid #DDE1EC; }
<div style="border:3px solid #DDE1EC">Div</div>
This div border color is #DDE1EC.
.myOpacity80 { color: #DDE1EC; opacity: 0.8; }
<p style="color:#DDE1EC;opacity:0.8;">80%</p>
Text with #DDE1EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDE1EC;}
<p style="text-shadow: 3px 3px 1px #DDE1EC">Text here.</p>
This text has shadow with #DDE1EC color.
.textShadow {text-shadow: 3px 3px 1px #DDE1EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDE1EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDE1EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDE1EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDE1EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDE1EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDE1EC; -webkit-box-shadow: 1px 1px 3px 2px #DDE1EC; box-shadow: 1px 1px 3px 2px #DDE1EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDE1EC; -webkit-box-shadow: 1px 1px 3px 2px #DDE1EC; box-shadow:1px 1px 3px 2px #DDE1EC;">
Div content here</div>
This text has color #DDE1EC on black background.
This text has color #DDE1EC on white background.
This text has black color on #DDE1EC background.
This text has white color on #DDE1EC background.