HEX: #E7B9AC
RGB: (231,185,172)
#E7B9AC contains red, green and blue colors in about the same proportion. Web safe color of #E7B9AC is #FFCC99 (or #FC9).
#E7B9AC color RGB value is (231,185,172).
RGB: (231,185,172) (91%,73%,67%)
R 231 of 255 = 91%
G 185 of 255 = 73%
B 172 of 255 = 67%
R + G + B ~ 77%. #E7B9AC is quite light color.
R + G + B =
231 + 185 + 172 = 588 (100%)
R 231 of 588 ~ 39.29%
G 185 of 588 ~ 31.46%
B 172 of 588 ~ 29.25%
#E7B9AC color CMYK value is (0,20,26,9).
CMYK: (0,20,26,9) C0M20Y26K9 (0%,20%,26%,9%) (0.00/0.20/0.26/0.09)
E7 | B9 | AC | |
---|---|---|---|
RGB | 231 | 185 | 172 |
HSL | 13° | 55.14% | 79.02% |
HSB/HSV | 13° | 25.54% | 90.59% |
CMYK | 0.00% | 19.91% | 25.54% |
9.41% |
HEX | E7 | B9 | AC |
Decimal | 231 | 185 | 172 |
Binary | 11100111 | 10111001 | 10101100 |
Octal | 347 | 271 | 254 |
Examples of css and html codes for elements with #E7B9AC color. Also use rgb(231,185,172) instead hex code.
.myTextColor { color: #E7B9AC; }
<p style="color:#E7B9AC">This sample text font color is #E7B9AC.</p>
This text font color is #E7B9AC.
.myBgColor { background-color: #E7B9AC; }
<div style="background-color:#E7B9AC">Inner text</div>
This div background color is #E7B9AC.
.myBorderColor { border: 1px solid #E7B9AC; }
<div style="border:3px solid #E7B9AC">Div</div>
This div border color is #E7B9AC.
.myOpacity80 { color: #E7B9AC; opacity: 0.8; }
<p style="color:#E7B9AC;opacity:0.8;">80%</p>
Text with #E7B9AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7B9AC;}
<p style="text-shadow: 3px 3px 1px #E7B9AC">Text here.</p>
This text has shadow with #E7B9AC color.
.textShadow {text-shadow: 3px 3px 1px #E7B9AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7B9AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7B9AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7B9AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7B9AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7B9AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7B9AC; -webkit-box-shadow: 1px 1px 3px 2px #E7B9AC; box-shadow: 1px 1px 3px 2px #E7B9AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7B9AC; -webkit-box-shadow: 1px 1px 3px 2px #E7B9AC; box-shadow:1px 1px 3px 2px #E7B9AC;">
Div content here</div>
This text has color #E7B9AC on black background.
This text has color #E7B9AC on white background.
This text has black color on #E7B9AC background.
This text has white color on #E7B9AC background.