HEX: #76806B
RGB: (118,128,107)
#76806B contains red, green and blue colors in about the same proportion. Web safe color of #76806B is #666666 (or #666).
#76806B color RGB value is (118,128,107).
RGB: (118,128,107) (46%,50%,42%)
R 118 of 255 = 46%
G 128 of 255 = 50%
B 107 of 255 = 42%
R + G + B ~ 46%. #76806B is middle color (not dark and not light).
R + G + B =
118 + 128 + 107 = 353 (100%)
R 118 of 353 ~ 33.43%
G 128 of 353 ~ 36.26%
B 107 of 353 ~ 30.31%
#76806B color CMYK value is (8,0,16,50).
CMYK: (8,0,16,50) C8M0Y16K50 (8%,0%,16%,50%) (0.08/0.00/0.16/0.50)
76 | 80 | 6B | |
---|---|---|---|
RGB | 118 | 128 | 107 |
HSL | 89° | 8.94% | 46.08% |
HSB/HSV | 89° | 16.41% | 50.20% |
CMYK | 7.81% | 0.00% | 16.41% |
49.80% |
HEX | 76 | 80 | 6B |
Decimal | 118 | 128 | 107 |
Binary | 1110110 | 10000000 | 1101011 |
Octal | 166 | 200 | 153 |
Examples of css and html codes for elements with #76806B color. Also use rgb(118,128,107) instead hex code.
.myTextColor { color: #76806B; }
<p style="color:#76806B">This sample text font color is #76806B.</p>
This text font color is #76806B.
.myBgColor { background-color: #76806B; }
<div style="background-color:#76806B">Inner text</div>
This div background color is #76806B.
.myBorderColor { border: 1px solid #76806B; }
<div style="border:3px solid #76806B">Div</div>
This div border color is #76806B.
.myOpacity80 { color: #76806B; opacity: 0.8; }
<p style="color:#76806B;opacity:0.8;">80%</p>
Text with #76806B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76806B;}
<p style="text-shadow: 3px 3px 1px #76806B">Text here.</p>
This text has shadow with #76806B color.
.textShadow {text-shadow: 3px 3px 1px #76806B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76806B, 5px 5px 20px red">Text here.</p>
This text has shadow with #76806B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76806B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76806B, Direction=45, Strength=4)">Text</p>
This text has shadow with #76806B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76806B; -webkit-box-shadow: 1px 1px 3px 2px #76806B; box-shadow: 1px 1px 3px 2px #76806B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76806B; -webkit-box-shadow: 1px 1px 3px 2px #76806B; box-shadow:1px 1px 3px 2px #76806B;">
Div content here</div>
This text has color #76806B on black background.
This text has color #76806B on white background.
This text has black color on #76806B background.
This text has white color on #76806B background.