HEX: #E7C79C
RGB: (231,199,156)
#E7C79C contains mainly red and green colors. Web safe color of #E7C79C is #FFCC99 (or #FC9).
#E7C79C color RGB value is (231,199,156).
RGB: (231,199,156) (91%,78%,61%)
R 231 of 255 = 91%
G 199 of 255 = 78%
B 156 of 255 = 61%
R + G + B ~ 77%. #E7C79C is quite light color.
R + G + B =
231 + 199 + 156 = 586 (100%)
R 231 of 586 ~ 39.42%
G 199 of 586 ~ 33.96%
B 156 of 586 ~ 26.62%
#E7C79C color CMYK value is (0,14,32,9).
CMYK: (0,14,32,9) C0M14Y32K9 (0%,14%,32%,9%) (0.00/0.14/0.32/0.09)
E7 | C7 | 9C | |
---|---|---|---|
RGB | 231 | 199 | 156 |
HSL | 34° | 60.98% | 75.88% |
HSB/HSV | 34° | 32.47% | 90.59% |
CMYK | 0.00% | 13.85% | 32.47% |
9.41% |
HEX | E7 | C7 | 9C |
Decimal | 231 | 199 | 156 |
Binary | 11100111 | 11000111 | 10011100 |
Octal | 347 | 307 | 234 |
Examples of css and html codes for elements with #E7C79C color. Also use rgb(231,199,156) instead hex code.
.myTextColor { color: #E7C79C; }
<p style="color:#E7C79C">This sample text font color is #E7C79C.</p>
This text font color is #E7C79C.
.myBgColor { background-color: #E7C79C; }
<div style="background-color:#E7C79C">Inner text</div>
This div background color is #E7C79C.
.myBorderColor { border: 1px solid #E7C79C; }
<div style="border:3px solid #E7C79C">Div</div>
This div border color is #E7C79C.
.myOpacity80 { color: #E7C79C; opacity: 0.8; }
<p style="color:#E7C79C;opacity:0.8;">80%</p>
Text with #E7C79C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7C79C;}
<p style="text-shadow: 3px 3px 1px #E7C79C">Text here.</p>
This text has shadow with #E7C79C color.
.textShadow {text-shadow: 3px 3px 1px #E7C79C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7C79C, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7C79C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7C79C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7C79C, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7C79C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7C79C; -webkit-box-shadow: 1px 1px 3px 2px #E7C79C; box-shadow: 1px 1px 3px 2px #E7C79C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7C79C; -webkit-box-shadow: 1px 1px 3px 2px #E7C79C; box-shadow:1px 1px 3px 2px #E7C79C;">
Div content here</div>
This text has color #E7C79C on black background.
This text has color #E7C79C on white background.
This text has black color on #E7C79C background.
This text has white color on #E7C79C background.