HEX: #EEE6BE
RGB: (238,230,190)
#EEE6BE contains red, green and blue colors in about the same proportion. Web safe color of #EEE6BE is #FFCCCC (or #FCC).
#EEE6BE color RGB value is (238,230,190).
RGB: (238,230,190) (93%,90%,75%)
R 238 of 255 = 93%
G 230 of 255 = 90%
B 190 of 255 = 75%
R + G + B ~ 86%. #EEE6BE is light color.
R + G + B =
238 + 230 + 190 = 658 (100%)
R 238 of 658 ~ 36.17%
G 230 of 658 ~ 34.95%
B 190 of 658 ~ 28.88%
#EEE6BE color CMYK value is (0,3,20,7).
CMYK: (0,3,20,7) C0M3Y20K7 (0%,3%,20%,7%) (0.00/0.03/0.20/0.07)
EE | E6 | BE | |
---|---|---|---|
RGB | 238 | 230 | 190 |
HSL | 50° | 58.54% | 83.92% |
HSB/HSV | 50° | 20.17% | 93.33% |
CMYK | 0.00% | 3.36% | 20.17% |
6.67% |
HEX | EE | E6 | BE |
Decimal | 238 | 230 | 190 |
Binary | 11101110 | 11100110 | 10111110 |
Octal | 356 | 346 | 276 |
Examples of css and html codes for elements with #EEE6BE color. Also use rgb(238,230,190) instead hex code.
.myTextColor { color: #EEE6BE; }
<p style="color:#EEE6BE">This sample text font color is #EEE6BE.</p>
This text font color is #EEE6BE.
.myBgColor { background-color: #EEE6BE; }
<div style="background-color:#EEE6BE">Inner text</div>
This div background color is #EEE6BE.
.myBorderColor { border: 1px solid #EEE6BE; }
<div style="border:3px solid #EEE6BE">Div</div>
This div border color is #EEE6BE.
.myOpacity80 { color: #EEE6BE; opacity: 0.8; }
<p style="color:#EEE6BE;opacity:0.8;">80%</p>
Text with #EEE6BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEE6BE;}
<p style="text-shadow: 3px 3px 1px #EEE6BE">Text here.</p>
This text has shadow with #EEE6BE color.
.textShadow {text-shadow: 3px 3px 1px #EEE6BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEE6BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEE6BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEE6BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEE6BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEE6BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEE6BE; -webkit-box-shadow: 1px 1px 3px 2px #EEE6BE; box-shadow: 1px 1px 3px 2px #EEE6BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEE6BE; -webkit-box-shadow: 1px 1px 3px 2px #EEE6BE; box-shadow:1px 1px 3px 2px #EEE6BE;">
Div content here</div>
This text has color #EEE6BE on black background.
This text has color #EEE6BE on white background.
This text has black color on #EEE6BE background.
This text has white color on #EEE6BE background.