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