HEX: #EED9DE
RGB: (238,217,222)
#EED9DE contains red, green and blue colors in about the same proportion. Web safe color of #EED9DE is #FFCCCC (or #FCC).
#EED9DE color RGB value is (238,217,222).
RGB: (238,217,222) (93%,85%,87%)
R 238 of 255 = 93%
G 217 of 255 = 85%
B 222 of 255 = 87%
R + G + B ~ 88%. #EED9DE is light color.
R + G + B =
238 + 217 + 222 = 677 (100%)
R 238 of 677 ~ 35.16%
G 217 of 677 ~ 32.05%
B 222 of 677 ~ 32.79%
#EED9DE color CMYK value is (0,9,7,7).
CMYK: (0,9,7,7) C0M9Y7K7 (0%,9%,7%,7%) (0.00/0.09/0.07/0.07)
EE | D9 | DE | |
---|---|---|---|
RGB | 238 | 217 | 222 |
HSL | 346° | 38.18% | 89.22% |
HSB/HSV | 346° | 8.82% | 93.33% |
CMYK | 0.00% | 8.82% | 6.72% |
6.67% |
HEX | EE | D9 | DE |
Decimal | 238 | 217 | 222 |
Binary | 11101110 | 11011001 | 11011110 |
Octal | 356 | 331 | 336 |
Examples of css and html codes for elements with #EED9DE color. Also use rgb(238,217,222) instead hex code.
.myTextColor { color: #EED9DE; }
<p style="color:#EED9DE">This sample text font color is #EED9DE.</p>
This text font color is #EED9DE.
.myBgColor { background-color: #EED9DE; }
<div style="background-color:#EED9DE">Inner text</div>
This div background color is #EED9DE.
.myBorderColor { border: 1px solid #EED9DE; }
<div style="border:3px solid #EED9DE">Div</div>
This div border color is #EED9DE.
.myOpacity80 { color: #EED9DE; opacity: 0.8; }
<p style="color:#EED9DE;opacity:0.8;">80%</p>
Text with #EED9DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EED9DE;}
<p style="text-shadow: 3px 3px 1px #EED9DE">Text here.</p>
This text has shadow with #EED9DE color.
.textShadow {text-shadow: 3px 3px 1px #EED9DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EED9DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EED9DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EED9DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EED9DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EED9DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EED9DE; -webkit-box-shadow: 1px 1px 3px 2px #EED9DE; box-shadow: 1px 1px 3px 2px #EED9DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EED9DE; -webkit-box-shadow: 1px 1px 3px 2px #EED9DE; box-shadow:1px 1px 3px 2px #EED9DE;">
Div content here</div>
This text has color #EED9DE on black background.
This text has color #EED9DE on white background.
This text has black color on #EED9DE background.
This text has white color on #EED9DE background.