HEX: #77B17B
RGB: (119,177,123)
#77B17B contains red, green and blue colors in about the same proportion. Web safe color of #77B17B is #669966 (or #696).
#77B17B color RGB value is (119,177,123).
RGB: (119,177,123) (47%,69%,48%)
R 119 of 255 = 47%
G 177 of 255 = 69%
B 123 of 255 = 48%
R + G + B ~ 55%. #77B17B is middle color (not dark and not light).
R + G + B =
119 + 177 + 123 = 419 (100%)
R 119 of 419 ~ 28.4%
G 177 of 419 ~ 42.24%
B 123 of 419 ~ 29.36%
#77B17B color CMYK value is (33,0,31,31).
CMYK: (33,0,31,31) C33M0Y31K31 (33%,0%,31%,31%) (0.33/0.00/0.31/0.31)
77 | B1 | 7B | |
---|---|---|---|
RGB | 119 | 177 | 123 |
HSL | 124° | 27.10% | 58.04% |
HSB/HSV | 124° | 32.77% | 69.41% |
CMYK | 32.77% | 0.00% | 30.51% |
30.59% |
HEX | 77 | B1 | 7B |
Decimal | 119 | 177 | 123 |
Binary | 1110111 | 10110001 | 1111011 |
Octal | 167 | 261 | 173 |
Examples of css and html codes for elements with #77B17B color. Also use rgb(119,177,123) instead hex code.
.myTextColor { color: #77B17B; }
<p style="color:#77B17B">This sample text font color is #77B17B.</p>
This text font color is #77B17B.
.myBgColor { background-color: #77B17B; }
<div style="background-color:#77B17B">Inner text</div>
This div background color is #77B17B.
.myBorderColor { border: 1px solid #77B17B; }
<div style="border:3px solid #77B17B">Div</div>
This div border color is #77B17B.
.myOpacity80 { color: #77B17B; opacity: 0.8; }
<p style="color:#77B17B;opacity:0.8;">80%</p>
Text with #77B17B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #77B17B;}
<p style="text-shadow: 3px 3px 1px #77B17B">Text here.</p>
This text has shadow with #77B17B color.
.textShadow {text-shadow: 3px 3px 1px #77B17B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #77B17B, 5px 5px 20px red">Text here.</p>
This text has shadow with #77B17B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#77B17B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#77B17B, Direction=45, Strength=4)">Text</p>
This text has shadow with #77B17B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #77B17B; -webkit-box-shadow: 1px 1px 3px 2px #77B17B; box-shadow: 1px 1px 3px 2px #77B17B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #77B17B; -webkit-box-shadow: 1px 1px 3px 2px #77B17B; box-shadow:1px 1px 3px 2px #77B17B;">
Div content here</div>
This text has color #77B17B on black background.
This text has color #77B17B on white background.
This text has black color on #77B17B background.
This text has white color on #77B17B background.