HEX: #EEF1DE
RGB: (238,241,222)
#EEF1DE contains red, green and blue colors in about the same proportion. Web safe color of #EEF1DE is #FFFFCC (or #FFC).
#EEF1DE color RGB value is (238,241,222).
RGB: (238,241,222) (93%,95%,87%)
R 238 of 255 = 93%
G 241 of 255 = 95%
B 222 of 255 = 87%
R + G + B ~ 92%. #EEF1DE is light color.
R + G + B =
238 + 241 + 222 = 701 (100%)
R 238 of 701 ~ 33.95%
G 241 of 701 ~ 34.38%
B 222 of 701 ~ 31.67%
#EEF1DE color CMYK value is (1,0,8,5).
CMYK: (1,0,8,5) C1M0Y8K5 (1%,0%,8%,5%) (0.01/0.00/0.08/0.05)
EE | F1 | DE | |
---|---|---|---|
RGB | 238 | 241 | 222 |
HSL | 69° | 40.43% | 90.78% |
HSB/HSV | 69° | 7.88% | 94.51% |
CMYK | 1.24% | 0.00% | 7.88% |
5.49% |
HEX | EE | F1 | DE |
Decimal | 238 | 241 | 222 |
Binary | 11101110 | 11110001 | 11011110 |
Octal | 356 | 361 | 336 |
Examples of css and html codes for elements with #EEF1DE color. Also use rgb(238,241,222) instead hex code.
.myTextColor { color: #EEF1DE; }
<p style="color:#EEF1DE">This sample text font color is #EEF1DE.</p>
This text font color is #EEF1DE.
.myBgColor { background-color: #EEF1DE; }
<div style="background-color:#EEF1DE">Inner text</div>
This div background color is #EEF1DE.
.myBorderColor { border: 1px solid #EEF1DE; }
<div style="border:3px solid #EEF1DE">Div</div>
This div border color is #EEF1DE.
.myOpacity80 { color: #EEF1DE; opacity: 0.8; }
<p style="color:#EEF1DE;opacity:0.8;">80%</p>
Text with #EEF1DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEF1DE;}
<p style="text-shadow: 3px 3px 1px #EEF1DE">Text here.</p>
This text has shadow with #EEF1DE color.
.textShadow {text-shadow: 3px 3px 1px #EEF1DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEF1DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEF1DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEF1DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEF1DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEF1DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEF1DE; -webkit-box-shadow: 1px 1px 3px 2px #EEF1DE; box-shadow: 1px 1px 3px 2px #EEF1DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEF1DE; -webkit-box-shadow: 1px 1px 3px 2px #EEF1DE; box-shadow:1px 1px 3px 2px #EEF1DE;">
Div content here</div>
This text has color #EEF1DE on black background.
This text has color #EEF1DE on white background.
This text has black color on #EEF1DE background.
This text has white color on #EEF1DE background.