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