HEX: #E96B22
RGB: (233,107,34)
#E96B22 contains mainly red color. Web safe color of #E96B22 is #FF6633 (or #F63).
#E96B22 color RGB value is (233,107,34).
RGB: (233,107,34) (91%,42%,13%)
R 233 of 255 = 91%
G 107 of 255 = 42%
B 34 of 255 = 13%
R + G + B ~ 49%. #E96B22 is middle color (not dark and not light).
R + G + B =
233 + 107 + 34 = 374 (100%)
R 233 of 374 ~ 62.3%
G 107 of 374 ~ 28.61%
B 34 of 374 ~ 9.09%
#E96B22 color CMYK value is (0,54,85,9).
CMYK: (0,54,85,9) C0M54Y85K9 (0%,54%,85%,9%) (0.00/0.54/0.85/0.09)
E9 | 6B | 22 | |
---|---|---|---|
RGB | 233 | 107 | 34 |
HSL | 22° | 81.89% | 52.35% |
HSB/HSV | 22° | 85.41% | 91.37% |
CMYK | 0.00% | 54.08% | 85.41% |
8.63% |
HEX | E9 | 6B | 22 |
Decimal | 233 | 107 | 34 |
Binary | 11101001 | 1101011 | 100010 |
Octal | 351 | 153 | 42 |
Examples of css and html codes for elements with #E96B22 color. Also use rgb(233,107,34) instead hex code.
.myTextColor { color: #E96B22; }
<p style="color:#E96B22">This sample text font color is #E96B22.</p>
This text font color is #E96B22.
.myBgColor { background-color: #E96B22; }
<div style="background-color:#E96B22">Inner text</div>
This div background color is #E96B22.
.myBorderColor { border: 1px solid #E96B22; }
<div style="border:3px solid #E96B22">Div</div>
This div border color is #E96B22.
.myOpacity80 { color: #E96B22; opacity: 0.8; }
<p style="color:#E96B22;opacity:0.8;">80%</p>
Text with #E96B22 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E96B22;}
<p style="text-shadow: 3px 3px 1px #E96B22">Text here.</p>
This text has shadow with #E96B22 color.
.textShadow {text-shadow: 3px 3px 1px #E96B22, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E96B22, 5px 5px 20px red">Text here.</p>
This text has shadow with #E96B22 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E96B22, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E96B22, Direction=45, Strength=4)">Text</p>
This text has shadow with #E96B22 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E96B22; -webkit-box-shadow: 1px 1px 3px 2px #E96B22; box-shadow: 1px 1px 3px 2px #E96B22; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E96B22; -webkit-box-shadow: 1px 1px 3px 2px #E96B22; box-shadow:1px 1px 3px 2px #E96B22;">
Div content here</div>
This text has color #E96B22 on black background.
This text has color #E96B22 on white background.
This text has black color on #E96B22 background.
This text has white color on #E96B22 background.