HEX: #E7D5BD
RGB: (231,213,189)
#E7D5BD contains red, green and blue colors in about the same proportion. Web safe color of #E7D5BD is #FFCCCC (or #FCC).
#E7D5BD color RGB value is (231,213,189).
RGB: (231,213,189) (91%,84%,74%)
R 231 of 255 = 91%
G 213 of 255 = 84%
B 189 of 255 = 74%
R + G + B ~ 83%. #E7D5BD is quite light color.
R + G + B =
231 + 213 + 189 = 633 (100%)
R 231 of 633 ~ 36.49%
G 213 of 633 ~ 33.65%
B 189 of 633 ~ 29.86%
#E7D5BD color CMYK value is (0,8,18,9).
CMYK: (0,8,18,9) C0M8Y18K9 (0%,8%,18%,9%) (0.00/0.08/0.18/0.09)
E7 | D5 | BD | |
---|---|---|---|
RGB | 231 | 213 | 189 |
HSL | 34° | 46.67% | 82.35% |
HSB/HSV | 34° | 18.18% | 90.59% |
CMYK | 0.00% | 7.79% | 18.18% |
9.41% |
HEX | E7 | D5 | BD |
Decimal | 231 | 213 | 189 |
Binary | 11100111 | 11010101 | 10111101 |
Octal | 347 | 325 | 275 |
Examples of css and html codes for elements with #E7D5BD color. Also use rgb(231,213,189) instead hex code.
.myTextColor { color: #E7D5BD; }
<p style="color:#E7D5BD">This sample text font color is #E7D5BD.</p>
This text font color is #E7D5BD.
.myBgColor { background-color: #E7D5BD; }
<div style="background-color:#E7D5BD">Inner text</div>
This div background color is #E7D5BD.
.myBorderColor { border: 1px solid #E7D5BD; }
<div style="border:3px solid #E7D5BD">Div</div>
This div border color is #E7D5BD.
.myOpacity80 { color: #E7D5BD; opacity: 0.8; }
<p style="color:#E7D5BD;opacity:0.8;">80%</p>
Text with #E7D5BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7D5BD;}
<p style="text-shadow: 3px 3px 1px #E7D5BD">Text here.</p>
This text has shadow with #E7D5BD color.
.textShadow {text-shadow: 3px 3px 1px #E7D5BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7D5BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7D5BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7D5BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7D5BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7D5BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7D5BD; -webkit-box-shadow: 1px 1px 3px 2px #E7D5BD; box-shadow: 1px 1px 3px 2px #E7D5BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7D5BD; -webkit-box-shadow: 1px 1px 3px 2px #E7D5BD; box-shadow:1px 1px 3px 2px #E7D5BD;">
Div content here</div>
This text has color #E7D5BD on black background.
This text has color #E7D5BD on white background.
This text has black color on #E7D5BD background.
This text has white color on #E7D5BD background.