HEX: #EED66E
RGB: (238,214,110)
#EED66E contains mainly red and green colors. Web safe color of #EED66E is #FFCC66 (or #FC6).
#EED66E color RGB value is (238,214,110).
RGB: (238,214,110) (93%,84%,43%)
R 238 of 255 = 93%
G 214 of 255 = 84%
B 110 of 255 = 43%
R + G + B ~ 73%. #EED66E is quite light color.
R + G + B =
238 + 214 + 110 = 562 (100%)
R 238 of 562 ~ 42.35%
G 214 of 562 ~ 38.08%
B 110 of 562 ~ 19.57%
#EED66E color CMYK value is (0,10,54,7).
CMYK: (0,10,54,7) C0M10Y54K7 (0%,10%,54%,7%) (0.00/0.10/0.54/0.07)
EE | D6 | 6E | |
---|---|---|---|
RGB | 238 | 214 | 110 |
HSL | 49° | 79.01% | 68.24% |
HSB/HSV | 49° | 53.78% | 93.33% |
CMYK | 0.00% | 10.08% | 53.78% |
6.67% |
HEX | EE | D6 | 6E |
Decimal | 238 | 214 | 110 |
Binary | 11101110 | 11010110 | 1101110 |
Octal | 356 | 326 | 156 |
Examples of css and html codes for elements with #EED66E color. Also use rgb(238,214,110) instead hex code.
.myTextColor { color: #EED66E; }
<p style="color:#EED66E">This sample text font color is #EED66E.</p>
This text font color is #EED66E.
.myBgColor { background-color: #EED66E; }
<div style="background-color:#EED66E">Inner text</div>
This div background color is #EED66E.
.myBorderColor { border: 1px solid #EED66E; }
<div style="border:3px solid #EED66E">Div</div>
This div border color is #EED66E.
.myOpacity80 { color: #EED66E; opacity: 0.8; }
<p style="color:#EED66E;opacity:0.8;">80%</p>
Text with #EED66E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EED66E;}
<p style="text-shadow: 3px 3px 1px #EED66E">Text here.</p>
This text has shadow with #EED66E color.
.textShadow {text-shadow: 3px 3px 1px #EED66E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EED66E, 5px 5px 20px red">Text here.</p>
This text has shadow with #EED66E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EED66E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EED66E, Direction=45, Strength=4)">Text</p>
This text has shadow with #EED66E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EED66E; -webkit-box-shadow: 1px 1px 3px 2px #EED66E; box-shadow: 1px 1px 3px 2px #EED66E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EED66E; -webkit-box-shadow: 1px 1px 3px 2px #EED66E; box-shadow:1px 1px 3px 2px #EED66E;">
Div content here</div>
This text has color #EED66E on black background.
This text has color #EED66E on white background.
This text has black color on #EED66E background.
This text has white color on #EED66E background.