HEX: #DDEEDF
RGB: (221,238,223)
#DDEEDF contains red, green and blue colors in about the same proportion. Web safe color of #DDEEDF is #CCFFCC (or #CFC).
#DDEEDF color RGB value is (221,238,223).
RGB: (221,238,223) (87%,93%,87%)
R 221 of 255 = 87%
G 238 of 255 = 93%
B 223 of 255 = 87%
R + G + B ~ 89%. #DDEEDF is light color.
R + G + B =
221 + 238 + 223 = 682 (100%)
R 221 of 682 ~ 32.4%
G 238 of 682 ~ 34.9%
B 223 of 682 ~ 32.7%
#DDEEDF color CMYK value is (7,0,6,7).
CMYK: (7,0,6,7) C7M0Y6K7 (7%,0%,6%,7%) (0.07/0.00/0.06/0.07)
DD | EE | DF | |
---|---|---|---|
RGB | 221 | 238 | 223 |
HSL | 127° | 33.33% | 90.00% |
HSB/HSV | 127° | 7.14% | 93.33% |
CMYK | 7.14% | 0.00% | 6.30% |
6.67% |
HEX | DD | EE | DF |
Decimal | 221 | 238 | 223 |
Binary | 11011101 | 11101110 | 11011111 |
Octal | 335 | 356 | 337 |
Examples of css and html codes for elements with #DDEEDF color. Also use rgb(221,238,223) instead hex code.
.myTextColor { color: #DDEEDF; }
<p style="color:#DDEEDF">This sample text font color is #DDEEDF.</p>
This text font color is #DDEEDF.
.myBgColor { background-color: #DDEEDF; }
<div style="background-color:#DDEEDF">Inner text</div>
This div background color is #DDEEDF.
.myBorderColor { border: 1px solid #DDEEDF; }
<div style="border:3px solid #DDEEDF">Div</div>
This div border color is #DDEEDF.
.myOpacity80 { color: #DDEEDF; opacity: 0.8; }
<p style="color:#DDEEDF;opacity:0.8;">80%</p>
Text with #DDEEDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDEEDF;}
<p style="text-shadow: 3px 3px 1px #DDEEDF">Text here.</p>
This text has shadow with #DDEEDF color.
.textShadow {text-shadow: 3px 3px 1px #DDEEDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDEEDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDEEDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDEEDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDEEDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDEEDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDEEDF; -webkit-box-shadow: 1px 1px 3px 2px #DDEEDF; box-shadow: 1px 1px 3px 2px #DDEEDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDEEDF; -webkit-box-shadow: 1px 1px 3px 2px #DDEEDF; box-shadow:1px 1px 3px 2px #DDEEDF;">
Div content here</div>
This text has color #DDEEDF on black background.
This text has color #DDEEDF on white background.
This text has black color on #DDEEDF background.
This text has white color on #DDEEDF background.