HEX: #767B6A
RGB: (118,123,106)
#767B6A contains red, green and blue colors in about the same proportion. Web safe color of #767B6A is #666666 (or #666).
#767B6A color RGB value is (118,123,106).
RGB: (118,123,106) (46%,48%,42%)
R 118 of 255 = 46%
G 123 of 255 = 48%
B 106 of 255 = 42%
R + G + B ~ 45%. #767B6A is middle color (not dark and not light).
R + G + B =
118 + 123 + 106 = 347 (100%)
R 118 of 347 ~ 34.01%
G 123 of 347 ~ 35.45%
B 106 of 347 ~ 30.55%
#767B6A color CMYK value is (4,0,14,52).
CMYK: (4,0,14,52) C4M0Y14K52 (4%,0%,14%,52%) (0.04/0.00/0.14/0.52)
76 | 7B | 6A | |
---|---|---|---|
RGB | 118 | 123 | 106 |
HSL | 78° | 7.42% | 44.90% |
HSB/HSV | 78° | 13.82% | 48.24% |
CMYK | 4.07% | 0.00% | 13.82% |
51.76% |
HEX | 76 | 7B | 6A |
Decimal | 118 | 123 | 106 |
Binary | 1110110 | 1111011 | 1101010 |
Octal | 166 | 173 | 152 |
Examples of css and html codes for elements with #767B6A color. Also use rgb(118,123,106) instead hex code.
.myTextColor { color: #767B6A; }
<p style="color:#767B6A">This sample text font color is #767B6A.</p>
This text font color is #767B6A.
.myBgColor { background-color: #767B6A; }
<div style="background-color:#767B6A">Inner text</div>
This div background color is #767B6A.
.myBorderColor { border: 1px solid #767B6A; }
<div style="border:3px solid #767B6A">Div</div>
This div border color is #767B6A.
.myOpacity80 { color: #767B6A; opacity: 0.8; }
<p style="color:#767B6A;opacity:0.8;">80%</p>
Text with #767B6A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #767B6A;}
<p style="text-shadow: 3px 3px 1px #767B6A">Text here.</p>
This text has shadow with #767B6A color.
.textShadow {text-shadow: 3px 3px 1px #767B6A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #767B6A, 5px 5px 20px red">Text here.</p>
This text has shadow with #767B6A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#767B6A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#767B6A, Direction=45, Strength=4)">Text</p>
This text has shadow with #767B6A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #767B6A; -webkit-box-shadow: 1px 1px 3px 2px #767B6A; box-shadow: 1px 1px 3px 2px #767B6A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #767B6A; -webkit-box-shadow: 1px 1px 3px 2px #767B6A; box-shadow:1px 1px 3px 2px #767B6A;">
Div content here</div>
This text has color #767B6A on black background.
This text has color #767B6A on white background.
This text has black color on #767B6A background.
This text has white color on #767B6A background.