HEX: #ED8314
RGB: (237,131,20)
#ED8314 contains mainly red color. Web safe color of #ED8314 is #FF9900 (or #F90).
#ED8314 color RGB value is (237,131,20).
RGB: (237,131,20) (93%,51%,8%)
R 237 of 255 = 93%
G 131 of 255 = 51%
B 20 of 255 = 8%
R + G + B ~ 51%. #ED8314 is middle color (not dark and not light).
R + G + B =
237 + 131 + 20 = 388 (100%)
R 237 of 388 ~ 61.08%
G 131 of 388 ~ 33.76%
B 20 of 388 ~ 5.15%
#ED8314 color CMYK value is (0,45,92,7).
CMYK: (0,45,92,7) C0M45Y92K7 (0%,45%,92%,7%) (0.00/0.45/0.92/0.07)
ED | 83 | 14 | |
---|---|---|---|
RGB | 237 | 131 | 20 |
HSL | 31° | 85.77% | 50.39% |
HSB/HSV | 31° | 91.56% | 92.94% |
CMYK | 0.00% | 44.73% | 91.56% |
7.06% |
HEX | ED | 83 | 14 |
Decimal | 237 | 131 | 20 |
Binary | 11101101 | 10000011 | 10100 |
Octal | 355 | 203 | 24 |
Examples of css and html codes for elements with #ED8314 color. Also use rgb(237,131,20) instead hex code.
.myTextColor { color: #ED8314; }
<p style="color:#ED8314">This sample text font color is #ED8314.</p>
This text font color is #ED8314.
.myBgColor { background-color: #ED8314; }
<div style="background-color:#ED8314">Inner text</div>
This div background color is #ED8314.
.myBorderColor { border: 1px solid #ED8314; }
<div style="border:3px solid #ED8314">Div</div>
This div border color is #ED8314.
.myOpacity80 { color: #ED8314; opacity: 0.8; }
<p style="color:#ED8314;opacity:0.8;">80%</p>
Text with #ED8314 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ED8314;}
<p style="text-shadow: 3px 3px 1px #ED8314">Text here.</p>
This text has shadow with #ED8314 color.
.textShadow {text-shadow: 3px 3px 1px #ED8314, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ED8314, 5px 5px 20px red">Text here.</p>
This text has shadow with #ED8314 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ED8314, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ED8314, Direction=45, Strength=4)">Text</p>
This text has shadow with #ED8314 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ED8314; -webkit-box-shadow: 1px 1px 3px 2px #ED8314; box-shadow: 1px 1px 3px 2px #ED8314; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ED8314; -webkit-box-shadow: 1px 1px 3px 2px #ED8314; box-shadow:1px 1px 3px 2px #ED8314;">
Div content here</div>
This text has color #ED8314 on black background.
This text has color #ED8314 on white background.
This text has black color on #ED8314 background.
This text has white color on #ED8314 background.