HEX: #E7D385
RGB: (231,211,133)
#E7D385 contains mainly red and green colors. Web safe color of #E7D385 is #FFCC99 (or #FC9).
#E7D385 color RGB value is (231,211,133).
RGB: (231,211,133) (91%,83%,52%)
R 231 of 255 = 91%
G 211 of 255 = 83%
B 133 of 255 = 52%
R + G + B ~ 75%. #E7D385 is quite light color.
R + G + B =
231 + 211 + 133 = 575 (100%)
R 231 of 575 ~ 40.17%
G 211 of 575 ~ 36.7%
B 133 of 575 ~ 23.13%
#E7D385 color CMYK value is (0,9,42,9).
CMYK: (0,9,42,9) C0M9Y42K9 (0%,9%,42%,9%) (0.00/0.09/0.42/0.09)
E7 | D3 | 85 | |
---|---|---|---|
RGB | 231 | 211 | 133 |
HSL | 48° | 67.12% | 71.37% |
HSB/HSV | 48° | 42.42% | 90.59% |
CMYK | 0.00% | 8.66% | 42.42% |
9.41% |
HEX | E7 | D3 | 85 |
Decimal | 231 | 211 | 133 |
Binary | 11100111 | 11010011 | 10000101 |
Octal | 347 | 323 | 205 |
Examples of css and html codes for elements with #E7D385 color. Also use rgb(231,211,133) instead hex code.
.myTextColor { color: #E7D385; }
<p style="color:#E7D385">This sample text font color is #E7D385.</p>
This text font color is #E7D385.
.myBgColor { background-color: #E7D385; }
<div style="background-color:#E7D385">Inner text</div>
This div background color is #E7D385.
.myBorderColor { border: 1px solid #E7D385; }
<div style="border:3px solid #E7D385">Div</div>
This div border color is #E7D385.
.myOpacity80 { color: #E7D385; opacity: 0.8; }
<p style="color:#E7D385;opacity:0.8;">80%</p>
Text with #E7D385 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E7D385;}
<p style="text-shadow: 3px 3px 1px #E7D385">Text here.</p>
This text has shadow with #E7D385 color.
.textShadow {text-shadow: 3px 3px 1px #E7D385, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E7D385, 5px 5px 20px red">Text here.</p>
This text has shadow with #E7D385 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E7D385, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E7D385, Direction=45, Strength=4)">Text</p>
This text has shadow with #E7D385 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E7D385; -webkit-box-shadow: 1px 1px 3px 2px #E7D385; box-shadow: 1px 1px 3px 2px #E7D385; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E7D385; -webkit-box-shadow: 1px 1px 3px 2px #E7D385; box-shadow:1px 1px 3px 2px #E7D385;">
Div content here</div>
This text has color #E7D385 on black background.
This text has color #E7D385 on white background.
This text has black color on #E7D385 background.
This text has white color on #E7D385 background.