HEX: #EEB03B
RGB: (238,176,59)
#EEB03B contains mainly red color. Web safe color of #EEB03B is #FF9933 (or #F93).
#EEB03B color RGB value is (238,176,59).
RGB: (238,176,59) (93%,69%,23%)
R 238 of 255 = 93%
G 176 of 255 = 69%
B 59 of 255 = 23%
R + G + B ~ 62%. #EEB03B is quite light color.
R + G + B =
238 + 176 + 59 = 473 (100%)
R 238 of 473 ~ 50.32%
G 176 of 473 ~ 37.21%
B 59 of 473 ~ 12.47%
#EEB03B color CMYK value is (0,26,75,7).
CMYK: (0,26,75,7) C0M26Y75K7 (0%,26%,75%,7%) (0.00/0.26/0.75/0.07)
EE | B0 | 3B | |
---|---|---|---|
RGB | 238 | 176 | 59 |
HSL | 39° | 84.04% | 58.24% |
HSB/HSV | 39° | 75.21% | 93.33% |
CMYK | 0.00% | 26.05% | 75.21% |
6.67% |
HEX | EE | B0 | 3B |
Decimal | 238 | 176 | 59 |
Binary | 11101110 | 10110000 | 111011 |
Octal | 356 | 260 | 73 |
Examples of css and html codes for elements with #EEB03B color. Also use rgb(238,176,59) instead hex code.
.myTextColor { color: #EEB03B; }
<p style="color:#EEB03B">This sample text font color is #EEB03B.</p>
This text font color is #EEB03B.
.myBgColor { background-color: #EEB03B; }
<div style="background-color:#EEB03B">Inner text</div>
This div background color is #EEB03B.
.myBorderColor { border: 1px solid #EEB03B; }
<div style="border:3px solid #EEB03B">Div</div>
This div border color is #EEB03B.
.myOpacity80 { color: #EEB03B; opacity: 0.8; }
<p style="color:#EEB03B;opacity:0.8;">80%</p>
Text with #EEB03B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEB03B;}
<p style="text-shadow: 3px 3px 1px #EEB03B">Text here.</p>
This text has shadow with #EEB03B color.
.textShadow {text-shadow: 3px 3px 1px #EEB03B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEB03B, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEB03B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEB03B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEB03B, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEB03B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEB03B; -webkit-box-shadow: 1px 1px 3px 2px #EEB03B; box-shadow: 1px 1px 3px 2px #EEB03B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEB03B; -webkit-box-shadow: 1px 1px 3px 2px #EEB03B; box-shadow:1px 1px 3px 2px #EEB03B;">
Div content here</div>
This text has color #EEB03B on black background.
This text has color #EEB03B on white background.
This text has black color on #EEB03B background.
This text has white color on #EEB03B background.