HEX: #767747
RGB: (118,119,71)
#767747 contains red, green and blue colors in about the same proportion. Web safe color of #767747 is #666633 (or #663).
#767747 color RGB value is (118,119,71).
RGB: (118,119,71) (46%,47%,28%)
R 118 of 255 = 46%
G 119 of 255 = 47%
B 71 of 255 = 28%
R + G + B ~ 40%. #767747 is middle color (not dark and not light).
R + G + B =
118 + 119 + 71 = 308 (100%)
R 118 of 308 ~ 38.31%
G 119 of 308 ~ 38.64%
B 71 of 308 ~ 23.05%
#767747 color CMYK value is (1,0,40,53).
CMYK: (1,0,40,53) C1M0Y40K53 (1%,0%,40%,53%) (0.01/0.00/0.40/0.53)
76 | 77 | 47 | |
---|---|---|---|
RGB | 118 | 119 | 71 |
HSL | 61° | 25.26% | 37.25% |
HSB/HSV | 61° | 40.34% | 46.67% |
CMYK | 0.84% | 0.00% | 40.34% |
53.33% |
HEX | 76 | 77 | 47 |
Decimal | 118 | 119 | 71 |
Binary | 1110110 | 1110111 | 1000111 |
Octal | 166 | 167 | 107 |
Examples of css and html codes for elements with #767747 color. Also use rgb(118,119,71) instead hex code.
.myTextColor { color: #767747; }
<p style="color:#767747">This sample text font color is #767747.</p>
This text font color is #767747.
.myBgColor { background-color: #767747; }
<div style="background-color:#767747">Inner text</div>
This div background color is #767747.
.myBorderColor { border: 1px solid #767747; }
<div style="border:3px solid #767747">Div</div>
This div border color is #767747.
.myOpacity80 { color: #767747; opacity: 0.8; }
<p style="color:#767747;opacity:0.8;">80%</p>
Text with #767747 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #767747;}
<p style="text-shadow: 3px 3px 1px #767747">Text here.</p>
This text has shadow with #767747 color.
.textShadow {text-shadow: 3px 3px 1px #767747, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #767747, 5px 5px 20px red">Text here.</p>
This text has shadow with #767747 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#767747, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#767747, Direction=45, Strength=4)">Text</p>
This text has shadow with #767747 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #767747; -webkit-box-shadow: 1px 1px 3px 2px #767747; box-shadow: 1px 1px 3px 2px #767747; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #767747; -webkit-box-shadow: 1px 1px 3px 2px #767747; box-shadow:1px 1px 3px 2px #767747;">
Div content here</div>
This text has color #767747 on black background.
This text has color #767747 on white background.
This text has black color on #767747 background.
This text has white color on #767747 background.