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