HEX: #717F6B
RGB: (113,127,107)
#717F6B contains red, green and blue colors in about the same proportion. Web safe color of #717F6B is #666666 (or #666).
#717F6B color RGB value is (113,127,107).
RGB: (113,127,107) (44%,50%,42%)
R 113 of 255 = 44%
G 127 of 255 = 50%
B 107 of 255 = 42%
R + G + B ~ 45%. #717F6B is middle color (not dark and not light).
R + G + B =
113 + 127 + 107 = 347 (100%)
R 113 of 347 ~ 32.56%
G 127 of 347 ~ 36.6%
B 107 of 347 ~ 30.84%
#717F6B color CMYK value is (11,0,16,50).
CMYK: (11,0,16,50) C11M0Y16K50 (11%,0%,16%,50%) (0.11/0.00/0.16/0.50)
71 | 7F | 6B | |
---|---|---|---|
RGB | 113 | 127 | 107 |
HSL | 102° | 8.55% | 45.88% |
HSB/HSV | 102° | 15.75% | 49.80% |
CMYK | 11.02% | 0.00% | 15.75% |
50.20% |
HEX | 71 | 7F | 6B |
Decimal | 113 | 127 | 107 |
Binary | 1110001 | 1111111 | 1101011 |
Octal | 161 | 177 | 153 |
Examples of css and html codes for elements with #717F6B color. Also use rgb(113,127,107) instead hex code.
.myTextColor { color: #717F6B; }
<p style="color:#717F6B">This sample text font color is #717F6B.</p>
This text font color is #717F6B.
.myBgColor { background-color: #717F6B; }
<div style="background-color:#717F6B">Inner text</div>
This div background color is #717F6B.
.myBorderColor { border: 1px solid #717F6B; }
<div style="border:3px solid #717F6B">Div</div>
This div border color is #717F6B.
.myOpacity80 { color: #717F6B; opacity: 0.8; }
<p style="color:#717F6B;opacity:0.8;">80%</p>
Text with #717F6B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #717F6B;}
<p style="text-shadow: 3px 3px 1px #717F6B">Text here.</p>
This text has shadow with #717F6B color.
.textShadow {text-shadow: 3px 3px 1px #717F6B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #717F6B, 5px 5px 20px red">Text here.</p>
This text has shadow with #717F6B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#717F6B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#717F6B, Direction=45, Strength=4)">Text</p>
This text has shadow with #717F6B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #717F6B; -webkit-box-shadow: 1px 1px 3px 2px #717F6B; box-shadow: 1px 1px 3px 2px #717F6B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #717F6B; -webkit-box-shadow: 1px 1px 3px 2px #717F6B; box-shadow:1px 1px 3px 2px #717F6B;">
Div content here</div>
This text has color #717F6B on black background.
This text has color #717F6B on white background.
This text has black color on #717F6B background.
This text has white color on #717F6B background.