HEX: #77505B
RGB: (119,80,91)
#77505B contains red, green and blue colors in about the same proportion. Web safe color of #77505B is #666666 (or #666).
#77505B color RGB value is (119,80,91).
RGB: (119,80,91) (47%,31%,36%)
R 119 of 255 = 47%
G 80 of 255 = 31%
B 91 of 255 = 36%
R + G + B ~ 38%. #77505B is quite dark color.
R + G + B =
119 + 80 + 91 = 290 (100%)
R 119 of 290 ~ 41.03%
G 80 of 290 ~ 27.59%
B 91 of 290 ~ 31.38%
#77505B color CMYK value is (0,33,24,53).
CMYK: (0,33,24,53) C0M33Y24K53 (0%,33%,24%,53%) (0.00/0.33/0.24/0.53)
77 | 50 | 5B | |
---|---|---|---|
RGB | 119 | 80 | 91 |
HSL | 343° | 19.60% | 39.02% |
HSB/HSV | 343° | 32.77% | 46.67% |
CMYK | 0.00% | 32.77% | 23.53% |
53.33% |
HEX | 77 | 50 | 5B |
Decimal | 119 | 80 | 91 |
Binary | 1110111 | 1010000 | 1011011 |
Octal | 167 | 120 | 133 |
Examples of css and html codes for elements with #77505B color. Also use rgb(119,80,91) instead hex code.
.myTextColor { color: #77505B; }
<p style="color:#77505B">This sample text font color is #77505B.</p>
This text font color is #77505B.
.myBgColor { background-color: #77505B; }
<div style="background-color:#77505B">Inner text</div>
This div background color is #77505B.
.myBorderColor { border: 1px solid #77505B; }
<div style="border:3px solid #77505B">Div</div>
This div border color is #77505B.
.myOpacity80 { color: #77505B; opacity: 0.8; }
<p style="color:#77505B;opacity:0.8;">80%</p>
Text with #77505B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77505B;}
<p style="text-shadow: 3px 3px 1px #77505B">Text here.</p>
This text has shadow with #77505B color.
.textShadow {text-shadow: 3px 3px 1px #77505B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77505B, 5px 5px 20px red">Text here.</p>
This text has shadow with #77505B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77505B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77505B, Direction=45, Strength=4)">Text</p>
This text has shadow with #77505B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77505B; -webkit-box-shadow: 1px 1px 3px 2px #77505B; box-shadow: 1px 1px 3px 2px #77505B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77505B; -webkit-box-shadow: 1px 1px 3px 2px #77505B; box-shadow:1px 1px 3px 2px #77505B;">
Div content here</div>
This text has color #77505B on black background.
This text has color #77505B on white background.
This text has black color on #77505B background.
This text has white color on #77505B background.