HEX: #EEC225
RGB: (238,194,37)
#EEC225 contains mainly red and green colors. Web safe color of #EEC225 is #FFCC33 (or #FC3).
#EEC225 color RGB value is (238,194,37).
RGB: (238,194,37) (93%,76%,15%)
R 238 of 255 = 93%
G 194 of 255 = 76%
B 37 of 255 = 15%
R + G + B ~ 61%. #EEC225 is quite light color.
R + G + B =
238 + 194 + 37 = 469 (100%)
R 238 of 469 ~ 50.75%
G 194 of 469 ~ 41.36%
B 37 of 469 ~ 7.89%
#EEC225 color CMYK value is (0,18,84,7).
CMYK: (0,18,84,7) C0M18Y84K7 (0%,18%,84%,7%) (0.00/0.18/0.84/0.07)
EE | C2 | 25 | |
---|---|---|---|
RGB | 238 | 194 | 37 |
HSL | 47° | 85.53% | 53.92% |
HSB/HSV | 47° | 84.45% | 93.33% |
CMYK | 0.00% | 18.49% | 84.45% |
6.67% |
HEX | EE | C2 | 25 |
Decimal | 238 | 194 | 37 |
Binary | 11101110 | 11000010 | 100101 |
Octal | 356 | 302 | 45 |
Examples of css and html codes for elements with #EEC225 color. Also use rgb(238,194,37) instead hex code.
.myTextColor { color: #EEC225; }
<p style="color:#EEC225">This sample text font color is #EEC225.</p>
This text font color is #EEC225.
.myBgColor { background-color: #EEC225; }
<div style="background-color:#EEC225">Inner text</div>
This div background color is #EEC225.
.myBorderColor { border: 1px solid #EEC225; }
<div style="border:3px solid #EEC225">Div</div>
This div border color is #EEC225.
.myOpacity80 { color: #EEC225; opacity: 0.8; }
<p style="color:#EEC225;opacity:0.8;">80%</p>
Text with #EEC225 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEC225;}
<p style="text-shadow: 3px 3px 1px #EEC225">Text here.</p>
This text has shadow with #EEC225 color.
.textShadow {text-shadow: 3px 3px 1px #EEC225, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEC225, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEC225 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEC225, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEC225, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEC225 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEC225; -webkit-box-shadow: 1px 1px 3px 2px #EEC225; box-shadow: 1px 1px 3px 2px #EEC225; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEC225; -webkit-box-shadow: 1px 1px 3px 2px #EEC225; box-shadow:1px 1px 3px 2px #EEC225;">
Div content here</div>
This text has color #EEC225 on black background.
This text has color #EEC225 on white background.
This text has black color on #EEC225 background.
This text has white color on #EEC225 background.