HEX: #E1B826
RGB: (225,184,38)
#E1B826 contains mainly red and green colors. Web safe color of #E1B826 is #CCCC33 (or #CC3).
#E1B826 color RGB value is (225,184,38).
RGB: (225,184,38) (88%,72%,15%)
R 225 of 255 = 88%
G 184 of 255 = 72%
B 38 of 255 = 15%
R + G + B ~ 58%. #E1B826 is middle color (not dark and not light).
R + G + B =
225 + 184 + 38 = 447 (100%)
R 225 of 447 ~ 50.34%
G 184 of 447 ~ 41.16%
B 38 of 447 ~ 8.5%
#E1B826 color CMYK value is (0,18,83,12).
CMYK: (0,18,83,12) C0M18Y83K12 (0%,18%,83%,12%) (0.00/0.18/0.83/0.12)
E1 | B8 | 26 | |
---|---|---|---|
RGB | 225 | 184 | 38 |
HSL | 47° | 75.71% | 51.57% |
HSB/HSV | 47° | 83.11% | 88.24% |
CMYK | 0.00% | 18.22% | 83.11% |
11.76% |
HEX | E1 | B8 | 26 |
Decimal | 225 | 184 | 38 |
Binary | 11100001 | 10111000 | 100110 |
Octal | 341 | 270 | 46 |
Examples of css and html codes for elements with #E1B826 color. Also use rgb(225,184,38) instead hex code.
.myTextColor { color: #E1B826; }
<p style="color:#E1B826">This sample text font color is #E1B826.</p>
This text font color is #E1B826.
.myBgColor { background-color: #E1B826; }
<div style="background-color:#E1B826">Inner text</div>
This div background color is #E1B826.
.myBorderColor { border: 1px solid #E1B826; }
<div style="border:3px solid #E1B826">Div</div>
This div border color is #E1B826.
.myOpacity80 { color: #E1B826; opacity: 0.8; }
<p style="color:#E1B826;opacity:0.8;">80%</p>
Text with #E1B826 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E1B826;}
<p style="text-shadow: 3px 3px 1px #E1B826">Text here.</p>
This text has shadow with #E1B826 color.
.textShadow {text-shadow: 3px 3px 1px #E1B826, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E1B826, 5px 5px 20px red">Text here.</p>
This text has shadow with #E1B826 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E1B826, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E1B826, Direction=45, Strength=4)">Text</p>
This text has shadow with #E1B826 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E1B826; -webkit-box-shadow: 1px 1px 3px 2px #E1B826; box-shadow: 1px 1px 3px 2px #E1B826; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E1B826; -webkit-box-shadow: 1px 1px 3px 2px #E1B826; box-shadow:1px 1px 3px 2px #E1B826;">
Div content here</div>
This text has color #E1B826 on black background.
This text has color #E1B826 on white background.
This text has black color on #E1B826 background.
This text has white color on #E1B826 background.