HEX: #EEE4BD
RGB: (238,228,189)
#EEE4BD contains red, green and blue colors in about the same proportion. Web safe color of #EEE4BD is #FFCCCC (or #FCC).
#EEE4BD color RGB value is (238,228,189).
RGB: (238,228,189) (93%,89%,74%)
R 238 of 255 = 93%
G 228 of 255 = 89%
B 189 of 255 = 74%
R + G + B ~ 85%. #EEE4BD is quite light color.
R + G + B =
238 + 228 + 189 = 655 (100%)
R 238 of 655 ~ 36.34%
G 228 of 655 ~ 34.81%
B 189 of 655 ~ 28.85%
#EEE4BD color CMYK value is (0,4,21,7).
CMYK: (0,4,21,7) C0M4Y21K7 (0%,4%,21%,7%) (0.00/0.04/0.21/0.07)
EE | E4 | BD | |
---|---|---|---|
RGB | 238 | 228 | 189 |
HSL | 48° | 59.04% | 83.73% |
HSB/HSV | 48° | 20.59% | 93.33% |
CMYK | 0.00% | 4.20% | 20.59% |
6.67% |
HEX | EE | E4 | BD |
Decimal | 238 | 228 | 189 |
Binary | 11101110 | 11100100 | 10111101 |
Octal | 356 | 344 | 275 |
Examples of css and html codes for elements with #EEE4BD color. Also use rgb(238,228,189) instead hex code.
.myTextColor { color: #EEE4BD; }
<p style="color:#EEE4BD">This sample text font color is #EEE4BD.</p>
This text font color is #EEE4BD.
.myBgColor { background-color: #EEE4BD; }
<div style="background-color:#EEE4BD">Inner text</div>
This div background color is #EEE4BD.
.myBorderColor { border: 1px solid #EEE4BD; }
<div style="border:3px solid #EEE4BD">Div</div>
This div border color is #EEE4BD.
.myOpacity80 { color: #EEE4BD; opacity: 0.8; }
<p style="color:#EEE4BD;opacity:0.8;">80%</p>
Text with #EEE4BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEE4BD;}
<p style="text-shadow: 3px 3px 1px #EEE4BD">Text here.</p>
This text has shadow with #EEE4BD color.
.textShadow {text-shadow: 3px 3px 1px #EEE4BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEE4BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEE4BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEE4BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEE4BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEE4BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEE4BD; -webkit-box-shadow: 1px 1px 3px 2px #EEE4BD; box-shadow: 1px 1px 3px 2px #EEE4BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEE4BD; -webkit-box-shadow: 1px 1px 3px 2px #EEE4BD; box-shadow:1px 1px 3px 2px #EEE4BD;">
Div content here</div>
This text has color #EEE4BD on black background.
This text has color #EEE4BD on white background.
This text has black color on #EEE4BD background.
This text has white color on #EEE4BD background.