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