HEX: #77AF72
RGB: (119,175,114)
#77AF72 contains mainly red and green colors. Web safe color of #77AF72 is #669966 (or #696).
#77AF72 color RGB value is (119,175,114).
RGB: (119,175,114) (47%,69%,45%)
R 119 of 255 = 47%
G 175 of 255 = 69%
B 114 of 255 = 45%
R + G + B ~ 54%. #77AF72 is middle color (not dark and not light).
R + G + B =
119 + 175 + 114 = 408 (100%)
R 119 of 408 ~ 29.17%
G 175 of 408 ~ 42.89%
B 114 of 408 ~ 27.94%
#77AF72 color CMYK value is (32,0,35,31).
CMYK: (32,0,35,31) C32M0Y35K31 (32%,0%,35%,31%) (0.32/0.00/0.35/0.31)
77 | AF | 72 | |
---|---|---|---|
RGB | 119 | 175 | 114 |
HSL | 115° | 27.60% | 56.67% |
HSB/HSV | 115° | 34.86% | 68.63% |
CMYK | 32.00% | 0.00% | 34.86% |
31.37% |
HEX | 77 | AF | 72 |
Decimal | 119 | 175 | 114 |
Binary | 1110111 | 10101111 | 1110010 |
Octal | 167 | 257 | 162 |
Examples of css and html codes for elements with #77AF72 color. Also use rgb(119,175,114) instead hex code.
.myTextColor { color: #77AF72; }
<p style="color:#77AF72">This sample text font color is #77AF72.</p>
This text font color is #77AF72.
.myBgColor { background-color: #77AF72; }
<div style="background-color:#77AF72">Inner text</div>
This div background color is #77AF72.
.myBorderColor { border: 1px solid #77AF72; }
<div style="border:3px solid #77AF72">Div</div>
This div border color is #77AF72.
.myOpacity80 { color: #77AF72; opacity: 0.8; }
<p style="color:#77AF72;opacity:0.8;">80%</p>
Text with #77AF72 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77AF72;}
<p style="text-shadow: 3px 3px 1px #77AF72">Text here.</p>
This text has shadow with #77AF72 color.
.textShadow {text-shadow: 3px 3px 1px #77AF72, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77AF72, 5px 5px 20px red">Text here.</p>
This text has shadow with #77AF72 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77AF72, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77AF72, Direction=45, Strength=4)">Text</p>
This text has shadow with #77AF72 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77AF72; -webkit-box-shadow: 1px 1px 3px 2px #77AF72; box-shadow: 1px 1px 3px 2px #77AF72; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77AF72; -webkit-box-shadow: 1px 1px 3px 2px #77AF72; box-shadow:1px 1px 3px 2px #77AF72;">
Div content here</div>
This text has color #77AF72 on black background.
This text has color #77AF72 on white background.
This text has black color on #77AF72 background.
This text has white color on #77AF72 background.