HEX: #E7D393
RGB: (231,211,147)
#E7D393 contains mainly red and green colors. Web safe color of #E7D393 is #FFCC99 (or #FC9).
#E7D393 color RGB value is (231,211,147).
RGB: (231,211,147) (91%,83%,58%)
R 231 of 255 = 91%
G 211 of 255 = 83%
B 147 of 255 = 58%
R + G + B ~ 77%. #E7D393 is quite light color.
R + G + B =
231 + 211 + 147 = 589 (100%)
R 231 of 589 ~ 39.22%
G 211 of 589 ~ 35.82%
B 147 of 589 ~ 24.96%
#E7D393 color CMYK value is (0,9,36,9).
CMYK: (0,9,36,9) C0M9Y36K9 (0%,9%,36%,9%) (0.00/0.09/0.36/0.09)
E7 | D3 | 93 | |
---|---|---|---|
RGB | 231 | 211 | 147 |
HSL | 46° | 63.64% | 74.12% |
HSB/HSV | 46° | 36.36% | 90.59% |
CMYK | 0.00% | 8.66% | 36.36% |
9.41% |
HEX | E7 | D3 | 93 |
Decimal | 231 | 211 | 147 |
Binary | 11100111 | 11010011 | 10010011 |
Octal | 347 | 323 | 223 |
Examples of css and html codes for elements with #E7D393 color. Also use rgb(231,211,147) instead hex code.
.myTextColor { color: #E7D393; }
<p style="color:#E7D393">This sample text font color is #E7D393.</p>
This text font color is #E7D393.
.myBgColor { background-color: #E7D393; }
<div style="background-color:#E7D393">Inner text</div>
This div background color is #E7D393.
.myBorderColor { border: 1px solid #E7D393; }
<div style="border:3px solid #E7D393">Div</div>
This div border color is #E7D393.
.myOpacity80 { color: #E7D393; opacity: 0.8; }
<p style="color:#E7D393;opacity:0.8;">80%</p>
Text with #E7D393 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7D393;}
<p style="text-shadow: 3px 3px 1px #E7D393">Text here.</p>
This text has shadow with #E7D393 color.
.textShadow {text-shadow: 3px 3px 1px #E7D393, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7D393, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7D393 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7D393, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7D393, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7D393 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7D393; -webkit-box-shadow: 1px 1px 3px 2px #E7D393; box-shadow: 1px 1px 3px 2px #E7D393; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7D393; -webkit-box-shadow: 1px 1px 3px 2px #E7D393; box-shadow:1px 1px 3px 2px #E7D393;">
Div content here</div>
This text has color #E7D393 on black background.
This text has color #E7D393 on white background.
This text has black color on #E7D393 background.
This text has white color on #E7D393 background.