HEX: #EED7BB
RGB: (238,215,187)
#EED7BB contains red, green and blue colors in about the same proportion. Web safe color of #EED7BB is #FFCCCC (or #FCC).
#EED7BB color RGB value is (238,215,187).
RGB: (238,215,187) (93%,84%,73%)
R 238 of 255 = 93%
G 215 of 255 = 84%
B 187 of 255 = 73%
R + G + B ~ 83%. #EED7BB is quite light color.
R + G + B =
238 + 215 + 187 = 640 (100%)
R 238 of 640 ~ 37.19%
G 215 of 640 ~ 33.59%
B 187 of 640 ~ 29.22%
#EED7BB color CMYK value is (0,10,21,7).
CMYK: (0,10,21,7) C0M10Y21K7 (0%,10%,21%,7%) (0.00/0.10/0.21/0.07)
EE | D7 | BB | |
---|---|---|---|
RGB | 238 | 215 | 187 |
HSL | 33° | 60.00% | 83.33% |
HSB/HSV | 33° | 21.43% | 93.33% |
CMYK | 0.00% | 9.66% | 21.43% |
6.67% |
HEX | EE | D7 | BB |
Decimal | 238 | 215 | 187 |
Binary | 11101110 | 11010111 | 10111011 |
Octal | 356 | 327 | 273 |
Examples of css and html codes for elements with #EED7BB color. Also use rgb(238,215,187) instead hex code.
.myTextColor { color: #EED7BB; }
<p style="color:#EED7BB">This sample text font color is #EED7BB.</p>
This text font color is #EED7BB.
.myBgColor { background-color: #EED7BB; }
<div style="background-color:#EED7BB">Inner text</div>
This div background color is #EED7BB.
.myBorderColor { border: 1px solid #EED7BB; }
<div style="border:3px solid #EED7BB">Div</div>
This div border color is #EED7BB.
.myOpacity80 { color: #EED7BB; opacity: 0.8; }
<p style="color:#EED7BB;opacity:0.8;">80%</p>
Text with #EED7BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EED7BB;}
<p style="text-shadow: 3px 3px 1px #EED7BB">Text here.</p>
This text has shadow with #EED7BB color.
.textShadow {text-shadow: 3px 3px 1px #EED7BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EED7BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EED7BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EED7BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EED7BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EED7BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EED7BB; -webkit-box-shadow: 1px 1px 3px 2px #EED7BB; box-shadow: 1px 1px 3px 2px #EED7BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EED7BB; -webkit-box-shadow: 1px 1px 3px 2px #EED7BB; box-shadow:1px 1px 3px 2px #EED7BB;">
Div content here</div>
This text has color #EED7BB on black background.
This text has color #EED7BB on white background.
This text has black color on #EED7BB background.
This text has white color on #EED7BB background.