HEX: #71704D
RGB: (113,112,77)
#71704D contains red, green and blue colors in about the same proportion. Web safe color of #71704D is #666633 (or #663).
#71704D color RGB value is (113,112,77).
RGB: (113,112,77) (44%,44%,30%)
R 113 of 255 = 44%
G 112 of 255 = 44%
B 77 of 255 = 30%
R + G + B ~ 39%. #71704D is quite dark color.
R + G + B =
113 + 112 + 77 = 302 (100%)
R 113 of 302 ~ 37.42%
G 112 of 302 ~ 37.09%
B 77 of 302 ~ 25.5%
#71704D color CMYK value is (0,1,32,56).
CMYK: (0,1,32,56) C0M1Y32K56 (0%,1%,32%,56%) (0.00/0.01/0.32/0.56)
71 | 70 | 4D | |
---|---|---|---|
RGB | 113 | 112 | 77 |
HSL | 58° | 18.95% | 37.25% |
HSB/HSV | 58° | 31.86% | 44.31% |
CMYK | 0.00% | 0.88% | 31.86% |
55.69% |
HEX | 71 | 70 | 4D |
Decimal | 113 | 112 | 77 |
Binary | 1110001 | 1110000 | 1001101 |
Octal | 161 | 160 | 115 |
Examples of css and html codes for elements with #71704D color. Also use rgb(113,112,77) instead hex code.
.myTextColor { color: #71704D; }
<p style="color:#71704D">This sample text font color is #71704D.</p>
This text font color is #71704D.
.myBgColor { background-color: #71704D; }
<div style="background-color:#71704D">Inner text</div>
This div background color is #71704D.
.myBorderColor { border: 1px solid #71704D; }
<div style="border:3px solid #71704D">Div</div>
This div border color is #71704D.
.myOpacity80 { color: #71704D; opacity: 0.8; }
<p style="color:#71704D;opacity:0.8;">80%</p>
Text with #71704D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71704D;}
<p style="text-shadow: 3px 3px 1px #71704D">Text here.</p>
This text has shadow with #71704D color.
.textShadow {text-shadow: 3px 3px 1px #71704D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71704D, 5px 5px 20px red">Text here.</p>
This text has shadow with #71704D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71704D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71704D, Direction=45, Strength=4)">Text</p>
This text has shadow with #71704D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71704D; -webkit-box-shadow: 1px 1px 3px 2px #71704D; box-shadow: 1px 1px 3px 2px #71704D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71704D; -webkit-box-shadow: 1px 1px 3px 2px #71704D; box-shadow:1px 1px 3px 2px #71704D;">
Div content here</div>
This text has color #71704D on black background.
This text has color #71704D on white background.
This text has black color on #71704D background.
This text has white color on #71704D background.