HEX: #E35200
RGB: (227,82,0)
#E35200 contains mainly red color. Web safe color of #E35200 is #CC6600 (or #C60).
#E35200 color RGB value is (227,82,0).
RGB: (227,82,0) (89%,32%,0%)
R 227 of 255 = 89%
G 82 of 255 = 32%
B 0 of 255 = 0%
R + G + B ~ 40%. #E35200 is middle color (not dark and not light).
R + G + B =
227 + 82 + 0 = 309 (100%)
R 227 of 309 ~ 73.46%
G 82 of 309 ~ 26.54%
B 0 of 309 ~ 0%
#E35200 color CMYK value is (0,64,100,11).
CMYK: (0,64,100,11) C0M64Y100K11 (0%,64%,100%,11%) (0.00/0.64/1.00/0.11)
E3 | 52 | 00 | |
---|---|---|---|
RGB | 227 | 82 | 0 |
HSL | 22° | 100.00% | 44.51% |
HSB/HSV | 22° | 100.00% | 89.02% |
CMYK | 0.00% | 63.88% | 100.00% |
10.98% |
HEX | E3 | 52 | 00 |
Decimal | 227 | 82 | 0 |
Binary | 11100011 | 1010010 | 0 |
Octal | 343 | 122 | 0 |
Examples of css and html codes for elements with #E35200 color. Also use rgb(227,82,0) instead hex code.
.myTextColor { color: #E35200; }
<p style="color:#E35200">This sample text font color is #E35200.</p>
This text font color is #E35200.
.myBgColor { background-color: #E35200; }
<div style="background-color:#E35200">Inner text</div>
This div background color is #E35200.
.myBorderColor { border: 1px solid #E35200; }
<div style="border:3px solid #E35200">Div</div>
This div border color is #E35200.
.myOpacity80 { color: #E35200; opacity: 0.8; }
<p style="color:#E35200;opacity:0.8;">80%</p>
Text with #E35200 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E35200;}
<p style="text-shadow: 3px 3px 1px #E35200">Text here.</p>
This text has shadow with #E35200 color.
.textShadow {text-shadow: 3px 3px 1px #E35200, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E35200, 5px 5px 20px red">Text here.</p>
This text has shadow with #E35200 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E35200, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E35200, Direction=45, Strength=4)">Text</p>
This text has shadow with #E35200 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E35200; -webkit-box-shadow: 1px 1px 3px 2px #E35200; box-shadow: 1px 1px 3px 2px #E35200; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E35200; -webkit-box-shadow: 1px 1px 3px 2px #E35200; box-shadow:1px 1px 3px 2px #E35200;">
Div content here</div>
This text has color #E35200 on black background.
This text has color #E35200 on white background.
This text has black color on #E35200 background.
This text has white color on #E35200 background.