HEX: #77807F
RGB: (119,128,127)
#77807F contains red, green and blue colors in about the same proportion. Web safe color of #77807F is #666666 (or #666).
#77807F color RGB value is (119,128,127).
RGB: (119,128,127) (47%,50%,50%)
R 119 of 255 = 47%
G 128 of 255 = 50%
B 127 of 255 = 50%
R + G + B ~ 49%. #77807F is middle color (not dark and not light).
R + G + B =
119 + 128 + 127 = 374 (100%)
R 119 of 374 ~ 31.82%
G 128 of 374 ~ 34.22%
B 127 of 374 ~ 33.96%
#77807F color CMYK value is (7,0,1,50).
CMYK: (7,0,1,50) C7M0Y1K50 (7%,0%,1%,50%) (0.07/0.00/0.01/0.50)
77 | 80 | 7F | |
---|---|---|---|
RGB | 119 | 128 | 127 |
HSL | 173° | 3.64% | 48.43% |
HSB/HSV | 173° | 7.03% | 50.20% |
CMYK | 7.03% | 0.00% | 0.78% |
49.80% |
HEX | 77 | 80 | 7F |
Decimal | 119 | 128 | 127 |
Binary | 1110111 | 10000000 | 1111111 |
Octal | 167 | 200 | 177 |
Examples of css and html codes for elements with #77807F color. Also use rgb(119,128,127) instead hex code.
.myTextColor { color: #77807F; }
<p style="color:#77807F">This sample text font color is #77807F.</p>
This text font color is #77807F.
.myBgColor { background-color: #77807F; }
<div style="background-color:#77807F">Inner text</div>
This div background color is #77807F.
.myBorderColor { border: 1px solid #77807F; }
<div style="border:3px solid #77807F">Div</div>
This div border color is #77807F.
.myOpacity80 { color: #77807F; opacity: 0.8; }
<p style="color:#77807F;opacity:0.8;">80%</p>
Text with #77807F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77807F;}
<p style="text-shadow: 3px 3px 1px #77807F">Text here.</p>
This text has shadow with #77807F color.
.textShadow {text-shadow: 3px 3px 1px #77807F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77807F, 5px 5px 20px red">Text here.</p>
This text has shadow with #77807F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77807F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77807F, Direction=45, Strength=4)">Text</p>
This text has shadow with #77807F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77807F; -webkit-box-shadow: 1px 1px 3px 2px #77807F; box-shadow: 1px 1px 3px 2px #77807F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77807F; -webkit-box-shadow: 1px 1px 3px 2px #77807F; box-shadow:1px 1px 3px 2px #77807F;">
Div content here</div>
This text has color #77807F on black background.
This text has color #77807F on white background.
This text has black color on #77807F background.
This text has white color on #77807F background.