HEX: #77A66E
RGB: (119,166,110)
#77A66E contains red, green and blue colors in about the same proportion. Web safe color of #77A66E is #669966 (or #696).
#77A66E color RGB value is (119,166,110).
RGB: (119,166,110) (47%,65%,43%)
R 119 of 255 = 47%
G 166 of 255 = 65%
B 110 of 255 = 43%
R + G + B ~ 52%. #77A66E is middle color (not dark and not light).
R + G + B =
119 + 166 + 110 = 395 (100%)
R 119 of 395 ~ 30.13%
G 166 of 395 ~ 42.03%
B 110 of 395 ~ 27.85%
#77A66E color CMYK value is (28,0,34,35).
CMYK: (28,0,34,35) C28M0Y34K35 (28%,0%,34%,35%) (0.28/0.00/0.34/0.35)
77 | A6 | 6E | |
---|---|---|---|
RGB | 119 | 166 | 110 |
HSL | 110° | 23.93% | 54.12% |
HSB/HSV | 110° | 33.73% | 65.10% |
CMYK | 28.31% | 0.00% | 33.73% |
34.90% |
HEX | 77 | A6 | 6E |
Decimal | 119 | 166 | 110 |
Binary | 1110111 | 10100110 | 1101110 |
Octal | 167 | 246 | 156 |
Examples of css and html codes for elements with #77A66E color. Also use rgb(119,166,110) instead hex code.
.myTextColor { color: #77A66E; }
<p style="color:#77A66E">This sample text font color is #77A66E.</p>
This text font color is #77A66E.
.myBgColor { background-color: #77A66E; }
<div style="background-color:#77A66E">Inner text</div>
This div background color is #77A66E.
.myBorderColor { border: 1px solid #77A66E; }
<div style="border:3px solid #77A66E">Div</div>
This div border color is #77A66E.
.myOpacity80 { color: #77A66E; opacity: 0.8; }
<p style="color:#77A66E;opacity:0.8;">80%</p>
Text with #77A66E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77A66E;}
<p style="text-shadow: 3px 3px 1px #77A66E">Text here.</p>
This text has shadow with #77A66E color.
.textShadow {text-shadow: 3px 3px 1px #77A66E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77A66E, 5px 5px 20px red">Text here.</p>
This text has shadow with #77A66E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77A66E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77A66E, Direction=45, Strength=4)">Text</p>
This text has shadow with #77A66E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77A66E; -webkit-box-shadow: 1px 1px 3px 2px #77A66E; box-shadow: 1px 1px 3px 2px #77A66E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77A66E; -webkit-box-shadow: 1px 1px 3px 2px #77A66E; box-shadow:1px 1px 3px 2px #77A66E;">
Div content here</div>
This text has color #77A66E on black background.
This text has color #77A66E on white background.
This text has black color on #77A66E background.
This text has white color on #77A66E background.