HEX: #71777D
RGB: (113,119,125)
#71777D contains red, green and blue colors in about the same proportion. Web safe color of #71777D is #666666 (or #666).
#71777D color RGB value is (113,119,125).
RGB: (113,119,125) (44%,47%,49%)
R 113 of 255 = 44%
G 119 of 255 = 47%
B 125 of 255 = 49%
R + G + B ~ 47%. #71777D is middle color (not dark and not light).
R + G + B =
113 + 119 + 125 = 357 (100%)
R 113 of 357 ~ 31.65%
G 119 of 357 ~ 33.33%
B 125 of 357 ~ 35.01%
#71777D color CMYK value is (10,5,0,51).
CMYK: (10,5,0,51) C10M5Y0K51 (10%,5%,0%,51%) (0.10/0.05/0.00/0.51)
71 | 77 | 7D | |
---|---|---|---|
RGB | 113 | 119 | 125 |
HSL | 210° | 5.04% | 46.67% |
HSB/HSV | 210° | 9.60% | 49.02% |
CMYK | 9.60% | 4.80% | 0.00% |
50.98% |
HEX | 71 | 77 | 7D |
Decimal | 113 | 119 | 125 |
Binary | 1110001 | 1110111 | 1111101 |
Octal | 161 | 167 | 175 |
Examples of css and html codes for elements with #71777D color. Also use rgb(113,119,125) instead hex code.
.myTextColor { color: #71777D; }
<p style="color:#71777D">This sample text font color is #71777D.</p>
This text font color is #71777D.
.myBgColor { background-color: #71777D; }
<div style="background-color:#71777D">Inner text</div>
This div background color is #71777D.
.myBorderColor { border: 1px solid #71777D; }
<div style="border:3px solid #71777D">Div</div>
This div border color is #71777D.
.myOpacity80 { color: #71777D; opacity: 0.8; }
<p style="color:#71777D;opacity:0.8;">80%</p>
Text with #71777D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #71777D;}
<p style="text-shadow: 3px 3px 1px #71777D">Text here.</p>
This text has shadow with #71777D color.
.textShadow {text-shadow: 3px 3px 1px #71777D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #71777D, 5px 5px 20px red">Text here.</p>
This text has shadow with #71777D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#71777D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#71777D, Direction=45, Strength=4)">Text</p>
This text has shadow with #71777D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #71777D; -webkit-box-shadow: 1px 1px 3px 2px #71777D; box-shadow: 1px 1px 3px 2px #71777D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #71777D; -webkit-box-shadow: 1px 1px 3px 2px #71777D; box-shadow:1px 1px 3px 2px #71777D;">
Div content here</div>
This text has color #71777D on black background.
This text has color #71777D on white background.
This text has black color on #71777D background.
This text has white color on #71777D background.