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