HEX: #EBA259
RGB: (235,162,89)
#EBA259 contains mainly red color. Web safe color of #EBA259 is #FF9966 (or #F96).
#EBA259 color RGB value is (235,162,89).
RGB: (235,162,89) (92%,64%,35%)
R 235 of 255 = 92%
G 162 of 255 = 64%
B 89 of 255 = 35%
R + G + B ~ 64%. #EBA259 is quite light color.
R + G + B =
235 + 162 + 89 = 486 (100%)
R 235 of 486 ~ 48.35%
G 162 of 486 ~ 33.33%
B 89 of 486 ~ 18.31%
#EBA259 color CMYK value is (0,31,62,8).
CMYK: (0,31,62,8) C0M31Y62K8 (0%,31%,62%,8%) (0.00/0.31/0.62/0.08)
EB | A2 | 59 | |
---|---|---|---|
RGB | 235 | 162 | 89 |
HSL | 30° | 78.49% | 63.53% |
HSB/HSV | 30° | 62.13% | 92.16% |
CMYK | 0.00% | 31.06% | 62.13% |
7.84% |
HEX | EB | A2 | 59 |
Decimal | 235 | 162 | 89 |
Binary | 11101011 | 10100010 | 1011001 |
Octal | 353 | 242 | 131 |
Examples of css and html codes for elements with #EBA259 color. Also use rgb(235,162,89) instead hex code.
.myTextColor { color: #EBA259; }
<p style="color:#EBA259">This sample text font color is #EBA259.</p>
This text font color is #EBA259.
.myBgColor { background-color: #EBA259; }
<div style="background-color:#EBA259">Inner text</div>
This div background color is #EBA259.
.myBorderColor { border: 1px solid #EBA259; }
<div style="border:3px solid #EBA259">Div</div>
This div border color is #EBA259.
.myOpacity80 { color: #EBA259; opacity: 0.8; }
<p style="color:#EBA259;opacity:0.8;">80%</p>
Text with #EBA259 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBA259;}
<p style="text-shadow: 3px 3px 1px #EBA259">Text here.</p>
This text has shadow with #EBA259 color.
.textShadow {text-shadow: 3px 3px 1px #EBA259, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBA259, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBA259 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBA259, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBA259, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBA259 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBA259; -webkit-box-shadow: 1px 1px 3px 2px #EBA259; box-shadow: 1px 1px 3px 2px #EBA259; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBA259; -webkit-box-shadow: 1px 1px 3px 2px #EBA259; box-shadow:1px 1px 3px 2px #EBA259;">
Div content here</div>
This text has color #EBA259 on black background.
This text has color #EBA259 on white background.
This text has black color on #EBA259 background.
This text has white color on #EBA259 background.