HEX: #E9D16F
RGB: (233,209,111)
#E9D16F contains mainly red and green colors. Web safe color of #E9D16F is #FFCC66 (or #FC6).
#E9D16F color RGB value is (233,209,111).
RGB: (233,209,111) (91%,82%,44%)
R 233 of 255 = 91%
G 209 of 255 = 82%
B 111 of 255 = 44%
R + G + B ~ 72%. #E9D16F is quite light color.
R + G + B =
233 + 209 + 111 = 553 (100%)
R 233 of 553 ~ 42.13%
G 209 of 553 ~ 37.79%
B 111 of 553 ~ 20.07%
#E9D16F color CMYK value is (0,10,52,9).
CMYK: (0,10,52,9) C0M10Y52K9 (0%,10%,52%,9%) (0.00/0.10/0.52/0.09)
E9 | D1 | 6F | |
---|---|---|---|
RGB | 233 | 209 | 111 |
HSL | 48° | 73.49% | 67.45% |
HSB/HSV | 48° | 52.36% | 91.37% |
CMYK | 0.00% | 10.30% | 52.36% |
8.63% |
HEX | E9 | D1 | 6F |
Decimal | 233 | 209 | 111 |
Binary | 11101001 | 11010001 | 1101111 |
Octal | 351 | 321 | 157 |
Examples of css and html codes for elements with #E9D16F color. Also use rgb(233,209,111) instead hex code.
.myTextColor { color: #E9D16F; }
<p style="color:#E9D16F">This sample text font color is #E9D16F.</p>
This text font color is #E9D16F.
.myBgColor { background-color: #E9D16F; }
<div style="background-color:#E9D16F">Inner text</div>
This div background color is #E9D16F.
.myBorderColor { border: 1px solid #E9D16F; }
<div style="border:3px solid #E9D16F">Div</div>
This div border color is #E9D16F.
.myOpacity80 { color: #E9D16F; opacity: 0.8; }
<p style="color:#E9D16F;opacity:0.8;">80%</p>
Text with #E9D16F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9D16F;}
<p style="text-shadow: 3px 3px 1px #E9D16F">Text here.</p>
This text has shadow with #E9D16F color.
.textShadow {text-shadow: 3px 3px 1px #E9D16F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9D16F, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9D16F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9D16F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9D16F, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9D16F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9D16F; -webkit-box-shadow: 1px 1px 3px 2px #E9D16F; box-shadow: 1px 1px 3px 2px #E9D16F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9D16F; -webkit-box-shadow: 1px 1px 3px 2px #E9D16F; box-shadow:1px 1px 3px 2px #E9D16F;">
Div content here</div>
This text has color #E9D16F on black background.
This text has color #E9D16F on white background.
This text has black color on #E9D16F background.
This text has white color on #E9D16F background.