HEX: #E46E34
RGB: (228,110,52)
#E46E34 contains mainly red color. Web safe color of #E46E34 is #CC6633 (or #C63).
#E46E34 color RGB value is (228,110,52).
RGB: (228,110,52) (89%,43%,20%)
R 228 of 255 = 89%
G 110 of 255 = 43%
B 52 of 255 = 20%
R + G + B ~ 51%. #E46E34 is middle color (not dark and not light).
R + G + B =
228 + 110 + 52 = 390 (100%)
R 228 of 390 ~ 58.46%
G 110 of 390 ~ 28.21%
B 52 of 390 ~ 13.33%
#E46E34 color CMYK value is (0,52,77,11).
CMYK: (0,52,77,11) C0M52Y77K11 (0%,52%,77%,11%) (0.00/0.52/0.77/0.11)
E4 | 6E | 34 | |
---|---|---|---|
RGB | 228 | 110 | 52 |
HSL | 20° | 76.52% | 54.90% |
HSB/HSV | 20° | 77.19% | 89.41% |
CMYK | 0.00% | 51.75% | 77.19% |
10.59% |
HEX | E4 | 6E | 34 |
Decimal | 228 | 110 | 52 |
Binary | 11100100 | 1101110 | 110100 |
Octal | 344 | 156 | 64 |
Examples of css and html codes for elements with #E46E34 color. Also use rgb(228,110,52) instead hex code.
.myTextColor { color: #E46E34; }
<p style="color:#E46E34">This sample text font color is #E46E34.</p>
This text font color is #E46E34.
.myBgColor { background-color: #E46E34; }
<div style="background-color:#E46E34">Inner text</div>
This div background color is #E46E34.
.myBorderColor { border: 1px solid #E46E34; }
<div style="border:3px solid #E46E34">Div</div>
This div border color is #E46E34.
.myOpacity80 { color: #E46E34; opacity: 0.8; }
<p style="color:#E46E34;opacity:0.8;">80%</p>
Text with #E46E34 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E46E34;}
<p style="text-shadow: 3px 3px 1px #E46E34">Text here.</p>
This text has shadow with #E46E34 color.
.textShadow {text-shadow: 3px 3px 1px #E46E34, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E46E34, 5px 5px 20px red">Text here.</p>
This text has shadow with #E46E34 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E46E34, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E46E34, Direction=45, Strength=4)">Text</p>
This text has shadow with #E46E34 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E46E34; -webkit-box-shadow: 1px 1px 3px 2px #E46E34; box-shadow: 1px 1px 3px 2px #E46E34; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E46E34; -webkit-box-shadow: 1px 1px 3px 2px #E46E34; box-shadow:1px 1px 3px 2px #E46E34;">
Div content here</div>
This text has color #E46E34 on black background.
This text has color #E46E34 on white background.
This text has black color on #E46E34 background.
This text has white color on #E46E34 background.