HEX: #EC8C39
RGB: (236,140,57)
#EC8C39 contains mainly red color. Web safe color of #EC8C39 is #FF9933 (or #F93).
#EC8C39 color RGB value is (236,140,57).
RGB: (236,140,57) (93%,55%,22%)
R 236 of 255 = 93%
G 140 of 255 = 55%
B 57 of 255 = 22%
R + G + B ~ 57%. #EC8C39 is middle color (not dark and not light).
R + G + B =
236 + 140 + 57 = 433 (100%)
R 236 of 433 ~ 54.5%
G 140 of 433 ~ 32.33%
B 57 of 433 ~ 13.16%
#EC8C39 color CMYK value is (0,41,76,7).
CMYK: (0,41,76,7) C0M41Y76K7 (0%,41%,76%,7%) (0.00/0.41/0.76/0.07)
EC | 8C | 39 | |
---|---|---|---|
RGB | 236 | 140 | 57 |
HSL | 28° | 82.49% | 57.45% |
HSB/HSV | 28° | 75.85% | 92.55% |
CMYK | 0.00% | 40.68% | 75.85% |
7.45% |
HEX | EC | 8C | 39 |
Decimal | 236 | 140 | 57 |
Binary | 11101100 | 10001100 | 111001 |
Octal | 354 | 214 | 71 |
Examples of css and html codes for elements with #EC8C39 color. Also use rgb(236,140,57) instead hex code.
.myTextColor { color: #EC8C39; }
<p style="color:#EC8C39">This sample text font color is #EC8C39.</p>
This text font color is #EC8C39.
.myBgColor { background-color: #EC8C39; }
<div style="background-color:#EC8C39">Inner text</div>
This div background color is #EC8C39.
.myBorderColor { border: 1px solid #EC8C39; }
<div style="border:3px solid #EC8C39">Div</div>
This div border color is #EC8C39.
.myOpacity80 { color: #EC8C39; opacity: 0.8; }
<p style="color:#EC8C39;opacity:0.8;">80%</p>
Text with #EC8C39 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EC8C39;}
<p style="text-shadow: 3px 3px 1px #EC8C39">Text here.</p>
This text has shadow with #EC8C39 color.
.textShadow {text-shadow: 3px 3px 1px #EC8C39, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EC8C39, 5px 5px 20px red">Text here.</p>
This text has shadow with #EC8C39 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EC8C39, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EC8C39, Direction=45, Strength=4)">Text</p>
This text has shadow with #EC8C39 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EC8C39; -webkit-box-shadow: 1px 1px 3px 2px #EC8C39; box-shadow: 1px 1px 3px 2px #EC8C39; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EC8C39; -webkit-box-shadow: 1px 1px 3px 2px #EC8C39; box-shadow:1px 1px 3px 2px #EC8C39;">
Div content here</div>
This text has color #EC8C39 on black background.
This text has color #EC8C39 on white background.
This text has black color on #EC8C39 background.
This text has white color on #EC8C39 background.