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