HEX: #76A66C
RGB: (118,166,108)
#76A66C contains red, green and blue colors in about the same proportion. Web safe color of #76A66C is #669966 (or #696).
#76A66C color RGB value is (118,166,108).
RGB: (118,166,108) (46%,65%,42%)
R 118 of 255 = 46%
G 166 of 255 = 65%
B 108 of 255 = 42%
R + G + B ~ 51%. #76A66C is middle color (not dark and not light).
R + G + B =
118 + 166 + 108 = 392 (100%)
R 118 of 392 ~ 30.1%
G 166 of 392 ~ 42.35%
B 108 of 392 ~ 27.55%
#76A66C color CMYK value is (29,0,35,35).
CMYK: (29,0,35,35) C29M0Y35K35 (29%,0%,35%,35%) (0.29/0.00/0.35/0.35)
76 | A6 | 6C | |
---|---|---|---|
RGB | 118 | 166 | 108 |
HSL | 110° | 24.58% | 53.73% |
HSB/HSV | 110° | 34.94% | 65.10% |
CMYK | 28.92% | 0.00% | 34.94% |
34.90% |
HEX | 76 | A6 | 6C |
Decimal | 118 | 166 | 108 |
Binary | 1110110 | 10100110 | 1101100 |
Octal | 166 | 246 | 154 |
Examples of css and html codes for elements with #76A66C color. Also use rgb(118,166,108) instead hex code.
.myTextColor { color: #76A66C; }
<p style="color:#76A66C">This sample text font color is #76A66C.</p>
This text font color is #76A66C.
.myBgColor { background-color: #76A66C; }
<div style="background-color:#76A66C">Inner text</div>
This div background color is #76A66C.
.myBorderColor { border: 1px solid #76A66C; }
<div style="border:3px solid #76A66C">Div</div>
This div border color is #76A66C.
.myOpacity80 { color: #76A66C; opacity: 0.8; }
<p style="color:#76A66C;opacity:0.8;">80%</p>
Text with #76A66C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76A66C;}
<p style="text-shadow: 3px 3px 1px #76A66C">Text here.</p>
This text has shadow with #76A66C color.
.textShadow {text-shadow: 3px 3px 1px #76A66C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76A66C, 5px 5px 20px red">Text here.</p>
This text has shadow with #76A66C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76A66C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76A66C, Direction=45, Strength=4)">Text</p>
This text has shadow with #76A66C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76A66C; -webkit-box-shadow: 1px 1px 3px 2px #76A66C; box-shadow: 1px 1px 3px 2px #76A66C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76A66C; -webkit-box-shadow: 1px 1px 3px 2px #76A66C; box-shadow:1px 1px 3px 2px #76A66C;">
Div content here</div>
This text has color #76A66C on black background.
This text has color #76A66C on white background.
This text has black color on #76A66C background.
This text has white color on #76A66C background.