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