HEX: #EEF2EB
RGB: (238,242,235)
#EEF2EB contains red, green and blue colors in about the same proportion. Web safe color of #EEF2EB is #FFFFFF (or #FFF).
#EEF2EB color RGB value is (238,242,235).
RGB: (238,242,235) (93%,95%,92%)
R 238 of 255 = 93%
G 242 of 255 = 95%
B 235 of 255 = 92%
R + G + B ~ 93%. #EEF2EB is light color.
R + G + B =
238 + 242 + 235 = 715 (100%)
R 238 of 715 ~ 33.29%
G 242 of 715 ~ 33.85%
B 235 of 715 ~ 32.87%
#EEF2EB color CMYK value is (2,0,3,5).
CMYK: (2,0,3,5) C2M0Y3K5 (2%,0%,3%,5%) (0.02/0.00/0.03/0.05)
EE | F2 | EB | |
---|---|---|---|
RGB | 238 | 242 | 235 |
HSL | 94° | 21.21% | 93.53% |
HSB/HSV | 94° | 2.89% | 94.90% |
CMYK | 1.65% | 0.00% | 2.89% |
5.10% |
HEX | EE | F2 | EB |
Decimal | 238 | 242 | 235 |
Binary | 11101110 | 11110010 | 11101011 |
Octal | 356 | 362 | 353 |
Examples of css and html codes for elements with #EEF2EB color. Also use rgb(238,242,235) instead hex code.
.myTextColor { color: #EEF2EB; }
<p style="color:#EEF2EB">This sample text font color is #EEF2EB.</p>
This text font color is #EEF2EB.
.myBgColor { background-color: #EEF2EB; }
<div style="background-color:#EEF2EB">Inner text</div>
This div background color is #EEF2EB.
.myBorderColor { border: 1px solid #EEF2EB; }
<div style="border:3px solid #EEF2EB">Div</div>
This div border color is #EEF2EB.
.myOpacity80 { color: #EEF2EB; opacity: 0.8; }
<p style="color:#EEF2EB;opacity:0.8;">80%</p>
Text with #EEF2EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEF2EB;}
<p style="text-shadow: 3px 3px 1px #EEF2EB">Text here.</p>
This text has shadow with #EEF2EB color.
.textShadow {text-shadow: 3px 3px 1px #EEF2EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEF2EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEF2EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEF2EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEF2EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEF2EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEF2EB; -webkit-box-shadow: 1px 1px 3px 2px #EEF2EB; box-shadow: 1px 1px 3px 2px #EEF2EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEF2EB; -webkit-box-shadow: 1px 1px 3px 2px #EEF2EB; box-shadow:1px 1px 3px 2px #EEF2EB;">
Div content here</div>
This text has color #EEF2EB on black background.
This text has color #EEF2EB on white background.
This text has black color on #EEF2EB background.
This text has white color on #EEF2EB background.