HEX: #ED5D03
RGB: (237,93,3)
#ED5D03 contains mainly red color. Web safe color of #ED5D03 is #FF6600 (or #F60).
#ED5D03 color RGB value is (237,93,3).
RGB: (237,93,3) (93%,36%,1%)
R 237 of 255 = 93%
G 93 of 255 = 36%
B 3 of 255 = 1%
R + G + B ~ 43%. #ED5D03 is middle color (not dark and not light).
R + G + B =
237 + 93 + 3 = 333 (100%)
R 237 of 333 ~ 71.17%
G 93 of 333 ~ 27.93%
B 3 of 333 ~ 0.9%
#ED5D03 color CMYK value is (0,61,99,7).
CMYK: (0,61,99,7) C0M61Y99K7 (0%,61%,99%,7%) (0.00/0.61/0.99/0.07)
ED | 5D | 03 | |
---|---|---|---|
RGB | 237 | 93 | 3 |
HSL | 23° | 97.50% | 47.06% |
HSB/HSV | 23° | 98.73% | 92.94% |
CMYK | 0.00% | 60.76% | 98.73% |
7.06% |
HEX | ED | 5D | 03 |
Decimal | 237 | 93 | 3 |
Binary | 11101101 | 1011101 | 11 |
Octal | 355 | 135 | 3 |
Examples of css and html codes for elements with #ED5D03 color. Also use rgb(237,93,3) instead hex code.
.myTextColor { color: #ED5D03; }
<p style="color:#ED5D03">This sample text font color is #ED5D03.</p>
This text font color is #ED5D03.
.myBgColor { background-color: #ED5D03; }
<div style="background-color:#ED5D03">Inner text</div>
This div background color is #ED5D03.
.myBorderColor { border: 1px solid #ED5D03; }
<div style="border:3px solid #ED5D03">Div</div>
This div border color is #ED5D03.
.myOpacity80 { color: #ED5D03; opacity: 0.8; }
<p style="color:#ED5D03;opacity:0.8;">80%</p>
Text with #ED5D03 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ED5D03;}
<p style="text-shadow: 3px 3px 1px #ED5D03">Text here.</p>
This text has shadow with #ED5D03 color.
.textShadow {text-shadow: 3px 3px 1px #ED5D03, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ED5D03, 5px 5px 20px red">Text here.</p>
This text has shadow with #ED5D03 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ED5D03, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ED5D03, Direction=45, Strength=4)">Text</p>
This text has shadow with #ED5D03 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ED5D03; -webkit-box-shadow: 1px 1px 3px 2px #ED5D03; box-shadow: 1px 1px 3px 2px #ED5D03; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ED5D03; -webkit-box-shadow: 1px 1px 3px 2px #ED5D03; box-shadow:1px 1px 3px 2px #ED5D03;">
Div content here</div>
This text has color #ED5D03 on black background.
This text has color #ED5D03 on white background.
This text has black color on #ED5D03 background.
This text has white color on #ED5D03 background.