HEX: #EEE0ED
RGB: (238,224,237)
#EEE0ED contains red, green and blue colors in about the same proportion. Web safe color of #EEE0ED is #FFCCFF (or #FCF).
#EEE0ED color RGB value is (238,224,237).
RGB: (238,224,237) (93%,88%,93%)
R 238 of 255 = 93%
G 224 of 255 = 88%
B 237 of 255 = 93%
R + G + B ~ 91%. #EEE0ED is light color.
R + G + B =
238 + 224 + 237 = 699 (100%)
R 238 of 699 ~ 34.05%
G 224 of 699 ~ 32.05%
B 237 of 699 ~ 33.91%
#EEE0ED color CMYK value is (0,6,0,7).
CMYK: (0,6,0,7) C0M6Y0K7 (0%,6%,0%,7%) (0.00/0.06/0.00/0.07)
EE | E0 | ED | |
---|---|---|---|
RGB | 238 | 224 | 237 |
HSL | 304° | 29.17% | 90.59% |
HSB/HSV | 304° | 5.88% | 93.33% |
CMYK | 0.00% | 5.88% | 0.42% |
6.67% |
HEX | EE | E0 | ED |
Decimal | 238 | 224 | 237 |
Binary | 11101110 | 11100000 | 11101101 |
Octal | 356 | 340 | 355 |
Examples of css and html codes for elements with #EEE0ED color. Also use rgb(238,224,237) instead hex code.
.myTextColor { color: #EEE0ED; }
<p style="color:#EEE0ED">This sample text font color is #EEE0ED.</p>
This text font color is #EEE0ED.
.myBgColor { background-color: #EEE0ED; }
<div style="background-color:#EEE0ED">Inner text</div>
This div background color is #EEE0ED.
.myBorderColor { border: 1px solid #EEE0ED; }
<div style="border:3px solid #EEE0ED">Div</div>
This div border color is #EEE0ED.
.myOpacity80 { color: #EEE0ED; opacity: 0.8; }
<p style="color:#EEE0ED;opacity:0.8;">80%</p>
Text with #EEE0ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEE0ED;}
<p style="text-shadow: 3px 3px 1px #EEE0ED">Text here.</p>
This text has shadow with #EEE0ED color.
.textShadow {text-shadow: 3px 3px 1px #EEE0ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEE0ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEE0ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEE0ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEE0ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEE0ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEE0ED; -webkit-box-shadow: 1px 1px 3px 2px #EEE0ED; box-shadow: 1px 1px 3px 2px #EEE0ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEE0ED; -webkit-box-shadow: 1px 1px 3px 2px #EEE0ED; box-shadow:1px 1px 3px 2px #EEE0ED;">
Div content here</div>
This text has color #EEE0ED on black background.
This text has color #EEE0ED on white background.
This text has black color on #EEE0ED background.
This text has white color on #EEE0ED background.