HEX: #EEC59E
RGB: (238,197,158)
#EEC59E contains mainly red and green colors. Web safe color of #EEC59E is #FFCC99 (or #FC9).
#EEC59E color RGB value is (238,197,158).
RGB: (238,197,158) (93%,77%,62%)
R 238 of 255 = 93%
G 197 of 255 = 77%
B 158 of 255 = 62%
R + G + B ~ 77%. #EEC59E is quite light color.
R + G + B =
238 + 197 + 158 = 593 (100%)
R 238 of 593 ~ 40.13%
G 197 of 593 ~ 33.22%
B 158 of 593 ~ 26.64%
#EEC59E color CMYK value is (0,17,34,7).
CMYK: (0,17,34,7) C0M17Y34K7 (0%,17%,34%,7%) (0.00/0.17/0.34/0.07)
EE | C5 | 9E | |
---|---|---|---|
RGB | 238 | 197 | 158 |
HSL | 29° | 70.18% | 77.65% |
HSB/HSV | 29° | 33.61% | 93.33% |
CMYK | 0.00% | 17.23% | 33.61% |
6.67% |
HEX | EE | C5 | 9E |
Decimal | 238 | 197 | 158 |
Binary | 11101110 | 11000101 | 10011110 |
Octal | 356 | 305 | 236 |
Examples of css and html codes for elements with #EEC59E color. Also use rgb(238,197,158) instead hex code.
.myTextColor { color: #EEC59E; }
<p style="color:#EEC59E">This sample text font color is #EEC59E.</p>
This text font color is #EEC59E.
.myBgColor { background-color: #EEC59E; }
<div style="background-color:#EEC59E">Inner text</div>
This div background color is #EEC59E.
.myBorderColor { border: 1px solid #EEC59E; }
<div style="border:3px solid #EEC59E">Div</div>
This div border color is #EEC59E.
.myOpacity80 { color: #EEC59E; opacity: 0.8; }
<p style="color:#EEC59E;opacity:0.8;">80%</p>
Text with #EEC59E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEC59E;}
<p style="text-shadow: 3px 3px 1px #EEC59E">Text here.</p>
This text has shadow with #EEC59E color.
.textShadow {text-shadow: 3px 3px 1px #EEC59E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEC59E, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEC59E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEC59E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEC59E, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEC59E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEC59E; -webkit-box-shadow: 1px 1px 3px 2px #EEC59E; box-shadow: 1px 1px 3px 2px #EEC59E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEC59E; -webkit-box-shadow: 1px 1px 3px 2px #EEC59E; box-shadow:1px 1px 3px 2px #EEC59E;">
Div content here</div>
This text has color #EEC59E on black background.
This text has color #EEC59E on white background.
This text has black color on #EEC59E background.
This text has white color on #EEC59E background.