HEX: #EE8C49
RGB: (238,140,73)
#EE8C49 contains mainly red color. Web safe color of #EE8C49 is #FF9933 (or #F93).
#EE8C49 color RGB value is (238,140,73).
RGB: (238,140,73) (93%,55%,29%)
R 238 of 255 = 93%
G 140 of 255 = 55%
B 73 of 255 = 29%
R + G + B ~ 59%. #EE8C49 is middle color (not dark and not light).
R + G + B =
238 + 140 + 73 = 451 (100%)
R 238 of 451 ~ 52.77%
G 140 of 451 ~ 31.04%
B 73 of 451 ~ 16.19%
#EE8C49 color CMYK value is (0,41,69,7).
CMYK: (0,41,69,7) C0M41Y69K7 (0%,41%,69%,7%) (0.00/0.41/0.69/0.07)
EE | 8C | 49 | |
---|---|---|---|
RGB | 238 | 140 | 73 |
HSL | 24° | 82.91% | 60.98% |
HSB/HSV | 24° | 69.33% | 93.33% |
CMYK | 0.00% | 41.18% | 69.33% |
6.67% |
HEX | EE | 8C | 49 |
Decimal | 238 | 140 | 73 |
Binary | 11101110 | 10001100 | 1001001 |
Octal | 356 | 214 | 111 |
Examples of css and html codes for elements with #EE8C49 color. Also use rgb(238,140,73) instead hex code.
.myTextColor { color: #EE8C49; }
<p style="color:#EE8C49">This sample text font color is #EE8C49.</p>
This text font color is #EE8C49.
.myBgColor { background-color: #EE8C49; }
<div style="background-color:#EE8C49">Inner text</div>
This div background color is #EE8C49.
.myBorderColor { border: 1px solid #EE8C49; }
<div style="border:3px solid #EE8C49">Div</div>
This div border color is #EE8C49.
.myOpacity80 { color: #EE8C49; opacity: 0.8; }
<p style="color:#EE8C49;opacity:0.8;">80%</p>
Text with #EE8C49 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EE8C49;}
<p style="text-shadow: 3px 3px 1px #EE8C49">Text here.</p>
This text has shadow with #EE8C49 color.
.textShadow {text-shadow: 3px 3px 1px #EE8C49, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EE8C49, 5px 5px 20px red">Text here.</p>
This text has shadow with #EE8C49 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EE8C49, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EE8C49, Direction=45, Strength=4)">Text</p>
This text has shadow with #EE8C49 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EE8C49; -webkit-box-shadow: 1px 1px 3px 2px #EE8C49; box-shadow: 1px 1px 3px 2px #EE8C49; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EE8C49; -webkit-box-shadow: 1px 1px 3px 2px #EE8C49; box-shadow:1px 1px 3px 2px #EE8C49;">
Div content here</div>
This text has color #EE8C49 on black background.
This text has color #EE8C49 on white background.
This text has black color on #EE8C49 background.
This text has white color on #EE8C49 background.