HEX: #DF740F
RGB: (223,116,15)
#DF740F contains mainly red color. Web safe color of #DF740F is #CC6600 (or #C60).
#DF740F color RGB value is (223,116,15).
RGB: (223,116,15) (87%,45%,6%)
R 223 of 255 = 87%
G 116 of 255 = 45%
B 15 of 255 = 6%
R + G + B ~ 46%. #DF740F is middle color (not dark and not light).
R + G + B =
223 + 116 + 15 = 354 (100%)
R 223 of 354 ~ 62.99%
G 116 of 354 ~ 32.77%
B 15 of 354 ~ 4.24%
#DF740F color CMYK value is (0,48,93,13).
CMYK: (0,48,93,13) C0M48Y93K13 (0%,48%,93%,13%) (0.00/0.48/0.93/0.13)
DF | 74 | 0F | |
---|---|---|---|
RGB | 223 | 116 | 15 |
HSL | 29° | 87.39% | 46.67% |
HSB/HSV | 29° | 93.27% | 87.45% |
CMYK | 0.00% | 47.98% | 93.27% |
12.55% |
HEX | DF | 74 | 0F |
Decimal | 223 | 116 | 15 |
Binary | 11011111 | 1110100 | 1111 |
Octal | 337 | 164 | 17 |
Examples of css and html codes for elements with #DF740F color. Also use rgb(223,116,15) instead hex code.
.myTextColor { color: #DF740F; }
<p style="color:#DF740F">This sample text font color is #DF740F.</p>
This text font color is #DF740F.
.myBgColor { background-color: #DF740F; }
<div style="background-color:#DF740F">Inner text</div>
This div background color is #DF740F.
.myBorderColor { border: 1px solid #DF740F; }
<div style="border:3px solid #DF740F">Div</div>
This div border color is #DF740F.
.myOpacity80 { color: #DF740F; opacity: 0.8; }
<p style="color:#DF740F;opacity:0.8;">80%</p>
Text with #DF740F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DF740F;}
<p style="text-shadow: 3px 3px 1px #DF740F">Text here.</p>
This text has shadow with #DF740F color.
.textShadow {text-shadow: 3px 3px 1px #DF740F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DF740F, 5px 5px 20px red">Text here.</p>
This text has shadow with #DF740F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DF740F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DF740F, Direction=45, Strength=4)">Text</p>
This text has shadow with #DF740F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DF740F; -webkit-box-shadow: 1px 1px 3px 2px #DF740F; box-shadow: 1px 1px 3px 2px #DF740F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DF740F; -webkit-box-shadow: 1px 1px 3px 2px #DF740F; box-shadow:1px 1px 3px 2px #DF740F;">
Div content here</div>
This text has color #DF740F on black background.
This text has color #DF740F on white background.
This text has black color on #DF740F background.
This text has white color on #DF740F background.