HEX: #EC9D3C
RGB: (236,157,60)
#EC9D3C contains mainly red color. Web safe color of #EC9D3C is #FF9933 (or #F93).
#EC9D3C color RGB value is (236,157,60).
RGB: (236,157,60) (93%,62%,24%)
R 236 of 255 = 93%
G 157 of 255 = 62%
B 60 of 255 = 24%
R + G + B ~ 60%. #EC9D3C is middle color (not dark and not light).
R + G + B =
236 + 157 + 60 = 453 (100%)
R 236 of 453 ~ 52.1%
G 157 of 453 ~ 34.66%
B 60 of 453 ~ 13.25%
#EC9D3C color CMYK value is (0,33,75,7).
CMYK: (0,33,75,7) C0M33Y75K7 (0%,33%,75%,7%) (0.00/0.33/0.75/0.07)
EC | 9D | 3C | |
---|---|---|---|
RGB | 236 | 157 | 60 |
HSL | 33° | 82.24% | 58.04% |
HSB/HSV | 33° | 74.58% | 92.55% |
CMYK | 0.00% | 33.47% | 74.58% |
7.45% |
HEX | EC | 9D | 3C |
Decimal | 236 | 157 | 60 |
Binary | 11101100 | 10011101 | 111100 |
Octal | 354 | 235 | 74 |
Examples of css and html codes for elements with #EC9D3C color. Also use rgb(236,157,60) instead hex code.
.myTextColor { color: #EC9D3C; }
<p style="color:#EC9D3C">This sample text font color is #EC9D3C.</p>
This text font color is #EC9D3C.
.myBgColor { background-color: #EC9D3C; }
<div style="background-color:#EC9D3C">Inner text</div>
This div background color is #EC9D3C.
.myBorderColor { border: 1px solid #EC9D3C; }
<div style="border:3px solid #EC9D3C">Div</div>
This div border color is #EC9D3C.
.myOpacity80 { color: #EC9D3C; opacity: 0.8; }
<p style="color:#EC9D3C;opacity:0.8;">80%</p>
Text with #EC9D3C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EC9D3C;}
<p style="text-shadow: 3px 3px 1px #EC9D3C">Text here.</p>
This text has shadow with #EC9D3C color.
.textShadow {text-shadow: 3px 3px 1px #EC9D3C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EC9D3C, 5px 5px 20px red">Text here.</p>
This text has shadow with #EC9D3C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EC9D3C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EC9D3C, Direction=45, Strength=4)">Text</p>
This text has shadow with #EC9D3C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EC9D3C; -webkit-box-shadow: 1px 1px 3px 2px #EC9D3C; box-shadow: 1px 1px 3px 2px #EC9D3C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EC9D3C; -webkit-box-shadow: 1px 1px 3px 2px #EC9D3C; box-shadow:1px 1px 3px 2px #EC9D3C;">
Div content here</div>
This text has color #EC9D3C on black background.
This text has color #EC9D3C on white background.
This text has black color on #EC9D3C background.
This text has white color on #EC9D3C background.