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