HEX: #DF6519
RGB: (223,101,25)
#DF6519 contains mainly red color. Web safe color of #DF6519 is #CC6600 (or #C60).
#DF6519 color RGB value is (223,101,25).
RGB: (223,101,25) (87%,40%,10%)
R 223 of 255 = 87%
G 101 of 255 = 40%
B 25 of 255 = 10%
R + G + B ~ 46%. #DF6519 is middle color (not dark and not light).
R + G + B =
223 + 101 + 25 = 349 (100%)
R 223 of 349 ~ 63.9%
G 101 of 349 ~ 28.94%
B 25 of 349 ~ 7.16%
#DF6519 color CMYK value is (0,55,89,13).
CMYK: (0,55,89,13) C0M55Y89K13 (0%,55%,89%,13%) (0.00/0.55/0.89/0.13)
DF | 65 | 19 | |
---|---|---|---|
RGB | 223 | 101 | 25 |
HSL | 23° | 79.84% | 48.63% |
HSB/HSV | 23° | 88.79% | 87.45% |
CMYK | 0.00% | 54.71% | 88.79% |
12.55% |
HEX | DF | 65 | 19 |
Decimal | 223 | 101 | 25 |
Binary | 11011111 | 1100101 | 11001 |
Octal | 337 | 145 | 31 |
Examples of css and html codes for elements with #DF6519 color. Also use rgb(223,101,25) instead hex code.
.myTextColor { color: #DF6519; }
<p style="color:#DF6519">This sample text font color is #DF6519.</p>
This text font color is #DF6519.
.myBgColor { background-color: #DF6519; }
<div style="background-color:#DF6519">Inner text</div>
This div background color is #DF6519.
.myBorderColor { border: 1px solid #DF6519; }
<div style="border:3px solid #DF6519">Div</div>
This div border color is #DF6519.
.myOpacity80 { color: #DF6519; opacity: 0.8; }
<p style="color:#DF6519;opacity:0.8;">80%</p>
Text with #DF6519 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DF6519;}
<p style="text-shadow: 3px 3px 1px #DF6519">Text here.</p>
This text has shadow with #DF6519 color.
.textShadow {text-shadow: 3px 3px 1px #DF6519, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DF6519, 5px 5px 20px red">Text here.</p>
This text has shadow with #DF6519 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DF6519, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DF6519, Direction=45, Strength=4)">Text</p>
This text has shadow with #DF6519 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DF6519; -webkit-box-shadow: 1px 1px 3px 2px #DF6519; box-shadow: 1px 1px 3px 2px #DF6519; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DF6519; -webkit-box-shadow: 1px 1px 3px 2px #DF6519; box-shadow:1px 1px 3px 2px #DF6519;">
Div content here</div>
This text has color #DF6519 on black background.
This text has color #DF6519 on white background.
This text has black color on #DF6519 background.
This text has white color on #DF6519 background.