HEX: #E88000
RGB: (232,128,0)
#E88000 contains mainly red color. Web safe color of #E88000 is #FF6600 (or #F60).
#E88000 color RGB value is (232,128,0).
RGB: (232,128,0) (91%,50%,0%)
R 232 of 255 = 91%
G 128 of 255 = 50%
B 0 of 255 = 0%
R + G + B ~ 47%. #E88000 is middle color (not dark and not light).
R + G + B =
232 + 128 + 0 = 360 (100%)
R 232 of 360 ~ 64.44%
G 128 of 360 ~ 35.56%
B 0 of 360 ~ 0%
#E88000 color CMYK value is (0,45,100,9).
CMYK: (0,45,100,9) C0M45Y100K9 (0%,45%,100%,9%) (0.00/0.45/1.00/0.09)
E8 | 80 | 00 | |
---|---|---|---|
RGB | 232 | 128 | 0 |
HSL | 33° | 100.00% | 45.49% |
HSB/HSV | 33° | 100.00% | 90.98% |
CMYK | 0.00% | 44.83% | 100.00% |
9.02% |
HEX | E8 | 80 | 00 |
Decimal | 232 | 128 | 0 |
Binary | 11101000 | 10000000 | 0 |
Octal | 350 | 200 | 0 |
Examples of css and html codes for elements with #E88000 color. Also use rgb(232,128,0) instead hex code.
.myTextColor { color: #E88000; }
<p style="color:#E88000">This sample text font color is #E88000.</p>
This text font color is #E88000.
.myBgColor { background-color: #E88000; }
<div style="background-color:#E88000">Inner text</div>
This div background color is #E88000.
.myBorderColor { border: 1px solid #E88000; }
<div style="border:3px solid #E88000">Div</div>
This div border color is #E88000.
.myOpacity80 { color: #E88000; opacity: 0.8; }
<p style="color:#E88000;opacity:0.8;">80%</p>
Text with #E88000 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E88000;}
<p style="text-shadow: 3px 3px 1px #E88000">Text here.</p>
This text has shadow with #E88000 color.
.textShadow {text-shadow: 3px 3px 1px #E88000, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E88000, 5px 5px 20px red">Text here.</p>
This text has shadow with #E88000 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E88000, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E88000, Direction=45, Strength=4)">Text</p>
This text has shadow with #E88000 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E88000; -webkit-box-shadow: 1px 1px 3px 2px #E88000; box-shadow: 1px 1px 3px 2px #E88000; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E88000; -webkit-box-shadow: 1px 1px 3px 2px #E88000; box-shadow:1px 1px 3px 2px #E88000;">
Div content here</div>
This text has color #E88000 on black background.
This text has color #E88000 on white background.
This text has black color on #E88000 background.
This text has white color on #E88000 background.