HEX: #76737A
RGB: (118,115,122)
#76737A contains red, green and blue colors in about the same proportion. Web safe color of #76737A is #666666 (or #666).
#76737A color RGB value is (118,115,122).
RGB: (118,115,122) (46%,45%,48%)
R 118 of 255 = 46%
G 115 of 255 = 45%
B 122 of 255 = 48%
R + G + B ~ 46%. #76737A is middle color (not dark and not light).
R + G + B =
118 + 115 + 122 = 355 (100%)
R 118 of 355 ~ 33.24%
G 115 of 355 ~ 32.39%
B 122 of 355 ~ 34.37%
#76737A color CMYK value is (3,6,0,52).
CMYK: (3,6,0,52) C3M6Y0K52 (3%,6%,0%,52%) (0.03/0.06/0.00/0.52)
76 | 73 | 7A | |
---|---|---|---|
RGB | 118 | 115 | 122 |
HSL | 266° | 2.95% | 46.47% |
HSB/HSV | 266° | 5.74% | 47.84% |
CMYK | 3.28% | 5.74% | 0.00% |
52.16% |
HEX | 76 | 73 | 7A |
Decimal | 118 | 115 | 122 |
Binary | 1110110 | 1110011 | 1111010 |
Octal | 166 | 163 | 172 |
Examples of css and html codes for elements with #76737A color. Also use rgb(118,115,122) instead hex code.
.myTextColor { color: #76737A; }
<p style="color:#76737A">This sample text font color is #76737A.</p>
This text font color is #76737A.
.myBgColor { background-color: #76737A; }
<div style="background-color:#76737A">Inner text</div>
This div background color is #76737A.
.myBorderColor { border: 1px solid #76737A; }
<div style="border:3px solid #76737A">Div</div>
This div border color is #76737A.
.myOpacity80 { color: #76737A; opacity: 0.8; }
<p style="color:#76737A;opacity:0.8;">80%</p>
Text with #76737A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76737A;}
<p style="text-shadow: 3px 3px 1px #76737A">Text here.</p>
This text has shadow with #76737A color.
.textShadow {text-shadow: 3px 3px 1px #76737A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76737A, 5px 5px 20px red">Text here.</p>
This text has shadow with #76737A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76737A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76737A, Direction=45, Strength=4)">Text</p>
This text has shadow with #76737A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76737A; -webkit-box-shadow: 1px 1px 3px 2px #76737A; box-shadow: 1px 1px 3px 2px #76737A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76737A; -webkit-box-shadow: 1px 1px 3px 2px #76737A; box-shadow:1px 1px 3px 2px #76737A;">
Div content here</div>
This text has color #76737A on black background.
This text has color #76737A on white background.
This text has black color on #76737A background.
This text has white color on #76737A background.