HEX: #E9D072
RGB: (233,208,114)
#E9D072 contains mainly red and green colors. Web safe color of #E9D072 is #FFCC66 (or #FC6).
#E9D072 color RGB value is (233,208,114).
RGB: (233,208,114) (91%,82%,45%)
R 233 of 255 = 91%
G 208 of 255 = 82%
B 114 of 255 = 45%
R + G + B ~ 73%. #E9D072 is quite light color.
R + G + B =
233 + 208 + 114 = 555 (100%)
R 233 of 555 ~ 41.98%
G 208 of 555 ~ 37.48%
B 114 of 555 ~ 20.54%
#E9D072 color CMYK value is (0,11,51,9).
CMYK: (0,11,51,9) C0M11Y51K9 (0%,11%,51%,9%) (0.00/0.11/0.51/0.09)
E9 | D0 | 72 | |
---|---|---|---|
RGB | 233 | 208 | 114 |
HSL | 47° | 73.01% | 68.04% |
HSB/HSV | 47° | 51.07% | 91.37% |
CMYK | 0.00% | 10.73% | 51.07% |
8.63% |
HEX | E9 | D0 | 72 |
Decimal | 233 | 208 | 114 |
Binary | 11101001 | 11010000 | 1110010 |
Octal | 351 | 320 | 162 |
Examples of css and html codes for elements with #E9D072 color. Also use rgb(233,208,114) instead hex code.
.myTextColor { color: #E9D072; }
<p style="color:#E9D072">This sample text font color is #E9D072.</p>
This text font color is #E9D072.
.myBgColor { background-color: #E9D072; }
<div style="background-color:#E9D072">Inner text</div>
This div background color is #E9D072.
.myBorderColor { border: 1px solid #E9D072; }
<div style="border:3px solid #E9D072">Div</div>
This div border color is #E9D072.
.myOpacity80 { color: #E9D072; opacity: 0.8; }
<p style="color:#E9D072;opacity:0.8;">80%</p>
Text with #E9D072 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9D072;}
<p style="text-shadow: 3px 3px 1px #E9D072">Text here.</p>
This text has shadow with #E9D072 color.
.textShadow {text-shadow: 3px 3px 1px #E9D072, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9D072, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9D072 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9D072, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9D072, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9D072 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9D072; -webkit-box-shadow: 1px 1px 3px 2px #E9D072; box-shadow: 1px 1px 3px 2px #E9D072; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9D072; -webkit-box-shadow: 1px 1px 3px 2px #E9D072; box-shadow:1px 1px 3px 2px #E9D072;">
Div content here</div>
This text has color #E9D072 on black background.
This text has color #E9D072 on white background.
This text has black color on #E9D072 background.
This text has white color on #E9D072 background.