HEX: #EBA82E
RGB: (235,168,46)
#EBA82E contains mainly red color. Web safe color of #EBA82E is #FF9933 (or #F93).
#EBA82E color RGB value is (235,168,46).
RGB: (235,168,46) (92%,66%,18%)
R 235 of 255 = 92%
G 168 of 255 = 66%
B 46 of 255 = 18%
R + G + B ~ 59%. #EBA82E is middle color (not dark and not light).
R + G + B =
235 + 168 + 46 = 449 (100%)
R 235 of 449 ~ 52.34%
G 168 of 449 ~ 37.42%
B 46 of 449 ~ 10.24%
#EBA82E color CMYK value is (0,29,80,8).
CMYK: (0,29,80,8) C0M29Y80K8 (0%,29%,80%,8%) (0.00/0.29/0.80/0.08)
EB | A8 | 2E | |
---|---|---|---|
RGB | 235 | 168 | 46 |
HSL | 39° | 82.53% | 55.10% |
HSB/HSV | 39° | 80.43% | 92.16% |
CMYK | 0.00% | 28.51% | 80.43% |
7.84% |
HEX | EB | A8 | 2E |
Decimal | 235 | 168 | 46 |
Binary | 11101011 | 10101000 | 101110 |
Octal | 353 | 250 | 56 |
Examples of css and html codes for elements with #EBA82E color. Also use rgb(235,168,46) instead hex code.
.myTextColor { color: #EBA82E; }
<p style="color:#EBA82E">This sample text font color is #EBA82E.</p>
This text font color is #EBA82E.
.myBgColor { background-color: #EBA82E; }
<div style="background-color:#EBA82E">Inner text</div>
This div background color is #EBA82E.
.myBorderColor { border: 1px solid #EBA82E; }
<div style="border:3px solid #EBA82E">Div</div>
This div border color is #EBA82E.
.myOpacity80 { color: #EBA82E; opacity: 0.8; }
<p style="color:#EBA82E;opacity:0.8;">80%</p>
Text with #EBA82E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBA82E;}
<p style="text-shadow: 3px 3px 1px #EBA82E">Text here.</p>
This text has shadow with #EBA82E color.
.textShadow {text-shadow: 3px 3px 1px #EBA82E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBA82E, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBA82E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBA82E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBA82E, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBA82E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBA82E; -webkit-box-shadow: 1px 1px 3px 2px #EBA82E; box-shadow: 1px 1px 3px 2px #EBA82E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBA82E; -webkit-box-shadow: 1px 1px 3px 2px #EBA82E; box-shadow:1px 1px 3px 2px #EBA82E;">
Div content here</div>
This text has color #EBA82E on black background.
This text has color #EBA82E on white background.
This text has black color on #EBA82E background.
This text has white color on #EBA82E background.