HEX: #71686B
RGB: (113,104,107)
#71686B contains red, green and blue colors in about the same proportion. Web safe color of #71686B is #666666 (or #666).
#71686B color RGB value is (113,104,107).
RGB: (113,104,107) (44%,41%,42%)
R 113 of 255 = 44%
G 104 of 255 = 41%
B 107 of 255 = 42%
R + G + B ~ 42%. #71686B is middle color (not dark and not light).
R + G + B =
113 + 104 + 107 = 324 (100%)
R 113 of 324 ~ 34.88%
G 104 of 324 ~ 32.1%
B 107 of 324 ~ 33.02%
#71686B color CMYK value is (0,8,5,56).
CMYK: (0,8,5,56) C0M8Y5K56 (0%,8%,5%,56%) (0.00/0.08/0.05/0.56)
71 | 68 | 6B | |
---|---|---|---|
RGB | 113 | 104 | 107 |
HSL | 340° | 4.15% | 42.55% |
HSB/HSV | 340° | 7.96% | 44.31% |
CMYK | 0.00% | 7.96% | 5.31% |
55.69% |
HEX | 71 | 68 | 6B |
Decimal | 113 | 104 | 107 |
Binary | 1110001 | 1101000 | 1101011 |
Octal | 161 | 150 | 153 |
Examples of css and html codes for elements with #71686B color. Also use rgb(113,104,107) instead hex code.
.myTextColor { color: #71686B; }
<p style="color:#71686B">This sample text font color is #71686B.</p>
This text font color is #71686B.
.myBgColor { background-color: #71686B; }
<div style="background-color:#71686B">Inner text</div>
This div background color is #71686B.
.myBorderColor { border: 1px solid #71686B; }
<div style="border:3px solid #71686B">Div</div>
This div border color is #71686B.
.myOpacity80 { color: #71686B; opacity: 0.8; }
<p style="color:#71686B;opacity:0.8;">80%</p>
Text with #71686B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71686B;}
<p style="text-shadow: 3px 3px 1px #71686B">Text here.</p>
This text has shadow with #71686B color.
.textShadow {text-shadow: 3px 3px 1px #71686B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71686B, 5px 5px 20px red">Text here.</p>
This text has shadow with #71686B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71686B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71686B, Direction=45, Strength=4)">Text</p>
This text has shadow with #71686B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71686B; -webkit-box-shadow: 1px 1px 3px 2px #71686B; box-shadow: 1px 1px 3px 2px #71686B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71686B; -webkit-box-shadow: 1px 1px 3px 2px #71686B; box-shadow:1px 1px 3px 2px #71686B;">
Div content here</div>
This text has color #71686B on black background.
This text has color #71686B on white background.
This text has black color on #71686B background.
This text has white color on #71686B background.