HEX: #EED95D
RGB: (238,217,93)
#EED95D contains mainly red and green colors. Web safe color of #EED95D is #FFCC66 (or #FC6).
#EED95D color RGB value is (238,217,93).
RGB: (238,217,93) (93%,85%,36%)
R 238 of 255 = 93%
G 217 of 255 = 85%
B 93 of 255 = 36%
R + G + B ~ 71%. #EED95D is quite light color.
R + G + B =
238 + 217 + 93 = 548 (100%)
R 238 of 548 ~ 43.43%
G 217 of 548 ~ 39.6%
B 93 of 548 ~ 16.97%
#EED95D color CMYK value is (0,9,61,7).
CMYK: (0,9,61,7) C0M9Y61K7 (0%,9%,61%,7%) (0.00/0.09/0.61/0.07)
EE | D9 | 5D | |
---|---|---|---|
RGB | 238 | 217 | 93 |
HSL | 51° | 81.01% | 64.90% |
HSB/HSV | 51° | 60.92% | 93.33% |
CMYK | 0.00% | 8.82% | 60.92% |
6.67% |
HEX | EE | D9 | 5D |
Decimal | 238 | 217 | 93 |
Binary | 11101110 | 11011001 | 1011101 |
Octal | 356 | 331 | 135 |
Examples of css and html codes for elements with #EED95D color. Also use rgb(238,217,93) instead hex code.
.myTextColor { color: #EED95D; }
<p style="color:#EED95D">This sample text font color is #EED95D.</p>
This text font color is #EED95D.
.myBgColor { background-color: #EED95D; }
<div style="background-color:#EED95D">Inner text</div>
This div background color is #EED95D.
.myBorderColor { border: 1px solid #EED95D; }
<div style="border:3px solid #EED95D">Div</div>
This div border color is #EED95D.
.myOpacity80 { color: #EED95D; opacity: 0.8; }
<p style="color:#EED95D;opacity:0.8;">80%</p>
Text with #EED95D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EED95D;}
<p style="text-shadow: 3px 3px 1px #EED95D">Text here.</p>
This text has shadow with #EED95D color.
.textShadow {text-shadow: 3px 3px 1px #EED95D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EED95D, 5px 5px 20px red">Text here.</p>
This text has shadow with #EED95D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EED95D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EED95D, Direction=45, Strength=4)">Text</p>
This text has shadow with #EED95D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EED95D; -webkit-box-shadow: 1px 1px 3px 2px #EED95D; box-shadow: 1px 1px 3px 2px #EED95D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EED95D; -webkit-box-shadow: 1px 1px 3px 2px #EED95D; box-shadow:1px 1px 3px 2px #EED95D;">
Div content here</div>
This text has color #EED95D on black background.
This text has color #EED95D on white background.
This text has black color on #EED95D background.
This text has white color on #EED95D background.