HEX: #DDE6ED
RGB: (221,230,237)
#DDE6ED contains red, green and blue colors in about the same proportion. Web safe color of #DDE6ED is #CCCCFF (or #CCF).
#DDE6ED color RGB value is (221,230,237).
RGB: (221,230,237) (87%,90%,93%)
R 221 of 255 = 87%
G 230 of 255 = 90%
B 237 of 255 = 93%
R + G + B ~ 90%. #DDE6ED is light color.
R + G + B =
221 + 230 + 237 = 688 (100%)
R 221 of 688 ~ 32.12%
G 230 of 688 ~ 33.43%
B 237 of 688 ~ 34.45%
#DDE6ED 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)
DD | E6 | ED | |
---|---|---|---|
RGB | 221 | 230 | 237 |
HSL | 206° | 30.77% | 89.80% |
HSB/HSV | 206° | 6.75% | 92.94% |
CMYK | 6.75% | 2.95% | 0.00% |
7.06% |
HEX | DD | E6 | ED |
Decimal | 221 | 230 | 237 |
Binary | 11011101 | 11100110 | 11101101 |
Octal | 335 | 346 | 355 |
Examples of css and html codes for elements with #DDE6ED color. Also use rgb(221,230,237) instead hex code.
.myTextColor { color: #DDE6ED; }
<p style="color:#DDE6ED">This sample text font color is #DDE6ED.</p>
This text font color is #DDE6ED.
.myBgColor { background-color: #DDE6ED; }
<div style="background-color:#DDE6ED">Inner text</div>
This div background color is #DDE6ED.
.myBorderColor { border: 1px solid #DDE6ED; }
<div style="border:3px solid #DDE6ED">Div</div>
This div border color is #DDE6ED.
.myOpacity80 { color: #DDE6ED; opacity: 0.8; }
<p style="color:#DDE6ED;opacity:0.8;">80%</p>
Text with #DDE6ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDE6ED;}
<p style="text-shadow: 3px 3px 1px #DDE6ED">Text here.</p>
This text has shadow with #DDE6ED color.
.textShadow {text-shadow: 3px 3px 1px #DDE6ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDE6ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDE6ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDE6ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDE6ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDE6ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDE6ED; -webkit-box-shadow: 1px 1px 3px 2px #DDE6ED; box-shadow: 1px 1px 3px 2px #DDE6ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDE6ED; -webkit-box-shadow: 1px 1px 3px 2px #DDE6ED; box-shadow:1px 1px 3px 2px #DDE6ED;">
Div content here</div>
This text has color #DDE6ED on black background.
This text has color #DDE6ED on white background.
This text has black color on #DDE6ED background.
This text has white color on #DDE6ED background.