HEX: #71684F
RGB: (113,104,79)
#71684F contains red, green and blue colors in about the same proportion. Web safe color of #71684F is #666666 (or #666).
#71684F color RGB value is (113,104,79).
RGB: (113,104,79) (44%,41%,31%)
R 113 of 255 = 44%
G 104 of 255 = 41%
B 79 of 255 = 31%
R + G + B ~ 39%. #71684F is quite dark color.
R + G + B =
113 + 104 + 79 = 296 (100%)
R 113 of 296 ~ 38.18%
G 104 of 296 ~ 35.14%
B 79 of 296 ~ 26.69%
#71684F color CMYK value is (0,8,30,56).
CMYK: (0,8,30,56) C0M8Y30K56 (0%,8%,30%,56%) (0.00/0.08/0.30/0.56)
71 | 68 | 4F | |
---|---|---|---|
RGB | 113 | 104 | 79 |
HSL | 44° | 17.71% | 37.65% |
HSB/HSV | 44° | 30.09% | 44.31% |
CMYK | 0.00% | 7.96% | 30.09% |
55.69% |
HEX | 71 | 68 | 4F |
Decimal | 113 | 104 | 79 |
Binary | 1110001 | 1101000 | 1001111 |
Octal | 161 | 150 | 117 |
Examples of css and html codes for elements with #71684F color. Also use rgb(113,104,79) instead hex code.
.myTextColor { color: #71684F; }
<p style="color:#71684F">This sample text font color is #71684F.</p>
This text font color is #71684F.
.myBgColor { background-color: #71684F; }
<div style="background-color:#71684F">Inner text</div>
This div background color is #71684F.
.myBorderColor { border: 1px solid #71684F; }
<div style="border:3px solid #71684F">Div</div>
This div border color is #71684F.
.myOpacity80 { color: #71684F; opacity: 0.8; }
<p style="color:#71684F;opacity:0.8;">80%</p>
Text with #71684F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71684F;}
<p style="text-shadow: 3px 3px 1px #71684F">Text here.</p>
This text has shadow with #71684F color.
.textShadow {text-shadow: 3px 3px 1px #71684F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71684F, 5px 5px 20px red">Text here.</p>
This text has shadow with #71684F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71684F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71684F, Direction=45, Strength=4)">Text</p>
This text has shadow with #71684F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71684F; -webkit-box-shadow: 1px 1px 3px 2px #71684F; box-shadow: 1px 1px 3px 2px #71684F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71684F; -webkit-box-shadow: 1px 1px 3px 2px #71684F; box-shadow:1px 1px 3px 2px #71684F;">
Div content here</div>
This text has color #71684F on black background.
This text has color #71684F on white background.
This text has black color on #71684F background.
This text has white color on #71684F background.