HEX: #77B371
RGB: (119,179,113)
#77B371 contains mainly green color. Web safe color of #77B371 is #669966 (or #696).
#77B371 color RGB value is (119,179,113).
RGB: (119,179,113) (47%,70%,44%)
R 119 of 255 = 47%
G 179 of 255 = 70%
B 113 of 255 = 44%
R + G + B ~ 54%. #77B371 is middle color (not dark and not light).
R + G + B =
119 + 179 + 113 = 411 (100%)
R 119 of 411 ~ 28.95%
G 179 of 411 ~ 43.55%
B 113 of 411 ~ 27.49%
#77B371 color CMYK value is (34,0,37,30).
CMYK: (34,0,37,30) C34M0Y37K30 (34%,0%,37%,30%) (0.34/0.00/0.37/0.30)
77 | B3 | 71 | |
---|---|---|---|
RGB | 119 | 179 | 113 |
HSL | 115° | 30.28% | 57.25% |
HSB/HSV | 115° | 36.87% | 70.20% |
CMYK | 33.52% | 0.00% | 36.87% |
29.80% |
HEX | 77 | B3 | 71 |
Decimal | 119 | 179 | 113 |
Binary | 1110111 | 10110011 | 1110001 |
Octal | 167 | 263 | 161 |
Examples of css and html codes for elements with #77B371 color. Also use rgb(119,179,113) instead hex code.
.myTextColor { color: #77B371; }
<p style="color:#77B371">This sample text font color is #77B371.</p>
This text font color is #77B371.
.myBgColor { background-color: #77B371; }
<div style="background-color:#77B371">Inner text</div>
This div background color is #77B371.
.myBorderColor { border: 1px solid #77B371; }
<div style="border:3px solid #77B371">Div</div>
This div border color is #77B371.
.myOpacity80 { color: #77B371; opacity: 0.8; }
<p style="color:#77B371;opacity:0.8;">80%</p>
Text with #77B371 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77B371;}
<p style="text-shadow: 3px 3px 1px #77B371">Text here.</p>
This text has shadow with #77B371 color.
.textShadow {text-shadow: 3px 3px 1px #77B371, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77B371, 5px 5px 20px red">Text here.</p>
This text has shadow with #77B371 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77B371, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77B371, Direction=45, Strength=4)">Text</p>
This text has shadow with #77B371 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77B371; -webkit-box-shadow: 1px 1px 3px 2px #77B371; box-shadow: 1px 1px 3px 2px #77B371; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77B371; -webkit-box-shadow: 1px 1px 3px 2px #77B371; box-shadow:1px 1px 3px 2px #77B371;">
Div content here</div>
This text has color #77B371 on black background.
This text has color #77B371 on white background.
This text has black color on #77B371 background.
This text has white color on #77B371 background.