HEX: #76886F
RGB: (118,136,111)
#76886F contains red, green and blue colors in about the same proportion. Web safe color of #76886F is #669966 (or #696).
#76886F color RGB value is (118,136,111).
RGB: (118,136,111) (46%,53%,44%)
R 118 of 255 = 46%
G 136 of 255 = 53%
B 111 of 255 = 44%
R + G + B ~ 48%. #76886F is middle color (not dark and not light).
R + G + B =
118 + 136 + 111 = 365 (100%)
R 118 of 365 ~ 32.33%
G 136 of 365 ~ 37.26%
B 111 of 365 ~ 30.41%
#76886F color CMYK value is (13,0,18,47).
CMYK: (13,0,18,47) C13M0Y18K47 (13%,0%,18%,47%) (0.13/0.00/0.18/0.47)
76 | 88 | 6F | |
---|---|---|---|
RGB | 118 | 136 | 111 |
HSL | 103° | 10.12% | 48.43% |
HSB/HSV | 103° | 18.38% | 53.33% |
CMYK | 13.24% | 0.00% | 18.38% |
46.67% |
HEX | 76 | 88 | 6F |
Decimal | 118 | 136 | 111 |
Binary | 1110110 | 10001000 | 1101111 |
Octal | 166 | 210 | 157 |
Examples of css and html codes for elements with #76886F color. Also use rgb(118,136,111) instead hex code.
.myTextColor { color: #76886F; }
<p style="color:#76886F">This sample text font color is #76886F.</p>
This text font color is #76886F.
.myBgColor { background-color: #76886F; }
<div style="background-color:#76886F">Inner text</div>
This div background color is #76886F.
.myBorderColor { border: 1px solid #76886F; }
<div style="border:3px solid #76886F">Div</div>
This div border color is #76886F.
.myOpacity80 { color: #76886F; opacity: 0.8; }
<p style="color:#76886F;opacity:0.8;">80%</p>
Text with #76886F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76886F;}
<p style="text-shadow: 3px 3px 1px #76886F">Text here.</p>
This text has shadow with #76886F color.
.textShadow {text-shadow: 3px 3px 1px #76886F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76886F, 5px 5px 20px red">Text here.</p>
This text has shadow with #76886F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76886F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76886F, Direction=45, Strength=4)">Text</p>
This text has shadow with #76886F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76886F; -webkit-box-shadow: 1px 1px 3px 2px #76886F; box-shadow: 1px 1px 3px 2px #76886F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76886F; -webkit-box-shadow: 1px 1px 3px 2px #76886F; box-shadow:1px 1px 3px 2px #76886F;">
Div content here</div>
This text has color #76886F on black background.
This text has color #76886F on white background.
This text has black color on #76886F background.
This text has white color on #76886F background.