HEX: #80BC77
RGB: (128,188,119)
#80BC77 contains mainly green color. Web safe color of #80BC77 is #66CC66 (or #6C6).
#80BC77 color RGB value is (128,188,119).
RGB: (128,188,119) (50%,74%,47%)
R 128 of 255 = 50%
G 188 of 255 = 74%
B 119 of 255 = 47%
R + G + B ~ 57%. #80BC77 is middle color (not dark and not light).
R + G + B =
128 + 188 + 119 = 435 (100%)
R 128 of 435 ~ 29.43%
G 188 of 435 ~ 43.22%
B 119 of 435 ~ 27.36%
#80BC77 color CMYK value is (32,0,37,26).
CMYK: (32,0,37,26) C32M0Y37K26 (32%,0%,37%,26%) (0.32/0.00/0.37/0.26)
80 | BC | 77 | |
---|---|---|---|
RGB | 128 | 188 | 119 |
HSL | 112° | 33.99% | 60.20% |
HSB/HSV | 112° | 36.70% | 73.73% |
CMYK | 31.91% | 0.00% | 36.70% |
26.27% |
HEX | 80 | BC | 77 |
Decimal | 128 | 188 | 119 |
Binary | 10000000 | 10111100 | 1110111 |
Octal | 200 | 274 | 167 |
Examples of css and html codes for elements with #80BC77 color. Also use rgb(128,188,119) instead hex code.
.myTextColor { color: #80BC77; }
<p style="color:#80BC77">This sample text font color is #80BC77.</p>
This text font color is #80BC77.
.myBgColor { background-color: #80BC77; }
<div style="background-color:#80BC77">Inner text</div>
This div background color is #80BC77.
.myBorderColor { border: 1px solid #80BC77; }
<div style="border:3px solid #80BC77">Div</div>
This div border color is #80BC77.
.myOpacity80 { color: #80BC77; opacity: 0.8; }
<p style="color:#80BC77;opacity:0.8;">80%</p>
Text with #80BC77 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #80BC77;}
<p style="text-shadow: 3px 3px 1px #80BC77">Text here.</p>
This text has shadow with #80BC77 color.
.textShadow {text-shadow: 3px 3px 1px #80BC77, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #80BC77, 5px 5px 20px red">Text here.</p>
This text has shadow with #80BC77 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#80BC77, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#80BC77, Direction=45, Strength=4)">Text</p>
This text has shadow with #80BC77 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #80BC77; -webkit-box-shadow: 1px 1px 3px 2px #80BC77; box-shadow: 1px 1px 3px 2px #80BC77; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #80BC77; -webkit-box-shadow: 1px 1px 3px 2px #80BC77; box-shadow:1px 1px 3px 2px #80BC77;">
Div content here</div>
This text has color #80BC77 on black background.
This text has color #80BC77 on white background.
This text has black color on #80BC77 background.
This text has white color on #80BC77 background.