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