HEX: #E5BC02
RGB: (229,188,2)
#E5BC02 contains mainly red and green colors. Web safe color of #E5BC02 is #CCCC00 (or #CC0).
#E5BC02 color RGB value is (229,188,2).
RGB: (229,188,2) (90%,74%,1%)
R 229 of 255 = 90%
G 188 of 255 = 74%
B 2 of 255 = 1%
R + G + B ~ 55%. #E5BC02 is middle color (not dark and not light).
R + G + B =
229 + 188 + 2 = 419 (100%)
R 229 of 419 ~ 54.65%
G 188 of 419 ~ 44.87%
B 2 of 419 ~ 0.48%
#E5BC02 color CMYK value is (0,18,99,10).
CMYK: (0,18,99,10) C0M18Y99K10 (0%,18%,99%,10%) (0.00/0.18/0.99/0.10)
E5 | BC | 02 | |
---|---|---|---|
RGB | 229 | 188 | 2 |
HSL | 49° | 98.27% | 45.29% |
HSB/HSV | 49° | 99.13% | 89.80% |
CMYK | 0.00% | 17.90% | 99.13% |
10.20% |
HEX | E5 | BC | 02 |
Decimal | 229 | 188 | 2 |
Binary | 11100101 | 10111100 | 10 |
Octal | 345 | 274 | 2 |
Examples of css and html codes for elements with #E5BC02 color. Also use rgb(229,188,2) instead hex code.
.myTextColor { color: #E5BC02; }
<p style="color:#E5BC02">This sample text font color is #E5BC02.</p>
This text font color is #E5BC02.
.myBgColor { background-color: #E5BC02; }
<div style="background-color:#E5BC02">Inner text</div>
This div background color is #E5BC02.
.myBorderColor { border: 1px solid #E5BC02; }
<div style="border:3px solid #E5BC02">Div</div>
This div border color is #E5BC02.
.myOpacity80 { color: #E5BC02; opacity: 0.8; }
<p style="color:#E5BC02;opacity:0.8;">80%</p>
Text with #E5BC02 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5BC02;}
<p style="text-shadow: 3px 3px 1px #E5BC02">Text here.</p>
This text has shadow with #E5BC02 color.
.textShadow {text-shadow: 3px 3px 1px #E5BC02, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5BC02, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5BC02 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5BC02, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5BC02, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5BC02 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5BC02; -webkit-box-shadow: 1px 1px 3px 2px #E5BC02; box-shadow: 1px 1px 3px 2px #E5BC02; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5BC02; -webkit-box-shadow: 1px 1px 3px 2px #E5BC02; box-shadow:1px 1px 3px 2px #E5BC02;">
Div content here</div>
This text has color #E5BC02 on black background.
This text has color #E5BC02 on white background.
This text has black color on #E5BC02 background.
This text has white color on #E5BC02 background.