HEX: #D98713
RGB: (217,135,19)
#D98713 contains mainly red color. Web safe color of #D98713 is #CC9900 (or #C90).
#D98713 color RGB value is (217,135,19).
RGB: (217,135,19) (85%,53%,7%)
R 217 of 255 = 85%
G 135 of 255 = 53%
B 19 of 255 = 7%
R + G + B ~ 48%. #D98713 is middle color (not dark and not light).
R + G + B =
217 + 135 + 19 = 371 (100%)
R 217 of 371 ~ 58.49%
G 135 of 371 ~ 36.39%
B 19 of 371 ~ 5.12%
#D98713 color CMYK value is (0,38,91,15).
CMYK: (0,38,91,15) C0M38Y91K15 (0%,38%,91%,15%) (0.00/0.38/0.91/0.15)
D9 | 87 | 13 | |
---|---|---|---|
RGB | 217 | 135 | 19 |
HSL | 35° | 83.90% | 46.27% |
HSB/HSV | 35° | 91.24% | 85.10% |
CMYK | 0.00% | 37.79% | 91.24% |
14.90% |
HEX | D9 | 87 | 13 |
Decimal | 217 | 135 | 19 |
Binary | 11011001 | 10000111 | 10011 |
Octal | 331 | 207 | 23 |
Examples of css and html codes for elements with #D98713 color. Also use rgb(217,135,19) instead hex code.
.myTextColor { color: #D98713; }
<p style="color:#D98713">This sample text font color is #D98713.</p>
This text font color is #D98713.
.myBgColor { background-color: #D98713; }
<div style="background-color:#D98713">Inner text</div>
This div background color is #D98713.
.myBorderColor { border: 1px solid #D98713; }
<div style="border:3px solid #D98713">Div</div>
This div border color is #D98713.
.myOpacity80 { color: #D98713; opacity: 0.8; }
<p style="color:#D98713;opacity:0.8;">80%</p>
Text with #D98713 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D98713;}
<p style="text-shadow: 3px 3px 1px #D98713">Text here.</p>
This text has shadow with #D98713 color.
.textShadow {text-shadow: 3px 3px 1px #D98713, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D98713, 5px 5px 20px red">Text here.</p>
This text has shadow with #D98713 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D98713, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D98713, Direction=45, Strength=4)">Text</p>
This text has shadow with #D98713 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D98713; -webkit-box-shadow: 1px 1px 3px 2px #D98713; box-shadow: 1px 1px 3px 2px #D98713; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D98713; -webkit-box-shadow: 1px 1px 3px 2px #D98713; box-shadow:1px 1px 3px 2px #D98713;">
Div content here</div>
This text has color #D98713 on black background.
This text has color #D98713 on white background.
This text has black color on #D98713 background.
This text has white color on #D98713 background.