HEX: #767864
RGB: (118,120,100)
#767864 contains red, green and blue colors in about the same proportion. Web safe color of #767864 is #666666 (or #666).
#767864 color RGB value is (118,120,100).
RGB: (118,120,100) (46%,47%,39%)
R 118 of 255 = 46%
G 120 of 255 = 47%
B 100 of 255 = 39%
R + G + B ~ 44%. #767864 is middle color (not dark and not light).
R + G + B =
118 + 120 + 100 = 338 (100%)
R 118 of 338 ~ 34.91%
G 120 of 338 ~ 35.5%
B 100 of 338 ~ 29.59%
#767864 color CMYK value is (2,0,17,53).
CMYK: (2,0,17,53) C2M0Y17K53 (2%,0%,17%,53%) (0.02/0.00/0.17/0.53)
76 | 78 | 64 | |
---|---|---|---|
RGB | 118 | 120 | 100 |
HSL | 66° | 9.09% | 43.14% |
HSB/HSV | 66° | 16.67% | 47.06% |
CMYK | 1.67% | 0.00% | 16.67% |
52.94% |
HEX | 76 | 78 | 64 |
Decimal | 118 | 120 | 100 |
Binary | 1110110 | 1111000 | 1100100 |
Octal | 166 | 170 | 144 |
Examples of css and html codes for elements with #767864 color. Also use rgb(118,120,100) instead hex code.
.myTextColor { color: #767864; }
<p style="color:#767864">This sample text font color is #767864.</p>
This text font color is #767864.
.myBgColor { background-color: #767864; }
<div style="background-color:#767864">Inner text</div>
This div background color is #767864.
.myBorderColor { border: 1px solid #767864; }
<div style="border:3px solid #767864">Div</div>
This div border color is #767864.
.myOpacity80 { color: #767864; opacity: 0.8; }
<p style="color:#767864;opacity:0.8;">80%</p>
Text with #767864 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #767864;}
<p style="text-shadow: 3px 3px 1px #767864">Text here.</p>
This text has shadow with #767864 color.
.textShadow {text-shadow: 3px 3px 1px #767864, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #767864, 5px 5px 20px red">Text here.</p>
This text has shadow with #767864 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#767864, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#767864, Direction=45, Strength=4)">Text</p>
This text has shadow with #767864 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #767864; -webkit-box-shadow: 1px 1px 3px 2px #767864; box-shadow: 1px 1px 3px 2px #767864; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #767864; -webkit-box-shadow: 1px 1px 3px 2px #767864; box-shadow:1px 1px 3px 2px #767864;">
Div content here</div>
This text has color #767864 on black background.
This text has color #767864 on white background.
This text has black color on #767864 background.
This text has white color on #767864 background.