HEX: #80DE76
RGB: (128,222,118)
#80DE76 contains mainly green color. Web safe color of #80DE76 is #66CC66 (or #6C6).
#80DE76 color RGB value is (128,222,118).
RGB: (128,222,118) (50%,87%,46%)
R 128 of 255 = 50%
G 222 of 255 = 87%
B 118 of 255 = 46%
R + G + B ~ 61%. #80DE76 is quite light color.
R + G + B =
128 + 222 + 118 = 468 (100%)
R 128 of 468 ~ 27.35%
G 222 of 468 ~ 47.44%
B 118 of 468 ~ 25.21%
#80DE76 color CMYK value is (42,0,47,13).
CMYK: (42,0,47,13) C42M0Y47K13 (42%,0%,47%,13%) (0.42/0.00/0.47/0.13)
80 | DE | 76 | |
---|---|---|---|
RGB | 128 | 222 | 118 |
HSL | 114° | 61.18% | 66.67% |
HSB/HSV | 114° | 46.85% | 87.06% |
CMYK | 42.34% | 0.00% | 46.85% |
12.94% |
HEX | 80 | DE | 76 |
Decimal | 128 | 222 | 118 |
Binary | 10000000 | 11011110 | 1110110 |
Octal | 200 | 336 | 166 |
Examples of css and html codes for elements with #80DE76 color. Also use rgb(128,222,118) instead hex code.
.myTextColor { color: #80DE76; }
<p style="color:#80DE76">This sample text font color is #80DE76.</p>
This text font color is #80DE76.
.myBgColor { background-color: #80DE76; }
<div style="background-color:#80DE76">Inner text</div>
This div background color is #80DE76.
.myBorderColor { border: 1px solid #80DE76; }
<div style="border:3px solid #80DE76">Div</div>
This div border color is #80DE76.
.myOpacity80 { color: #80DE76; opacity: 0.8; }
<p style="color:#80DE76;opacity:0.8;">80%</p>
Text with #80DE76 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #80DE76;}
<p style="text-shadow: 3px 3px 1px #80DE76">Text here.</p>
This text has shadow with #80DE76 color.
.textShadow {text-shadow: 3px 3px 1px #80DE76, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #80DE76, 5px 5px 20px red">Text here.</p>
This text has shadow with #80DE76 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#80DE76, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#80DE76, Direction=45, Strength=4)">Text</p>
This text has shadow with #80DE76 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #80DE76; -webkit-box-shadow: 1px 1px 3px 2px #80DE76; box-shadow: 1px 1px 3px 2px #80DE76; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #80DE76; -webkit-box-shadow: 1px 1px 3px 2px #80DE76; box-shadow:1px 1px 3px 2px #80DE76;">
Div content here</div>
This text has color #80DE76 on black background.
This text has color #80DE76 on white background.
This text has black color on #80DE76 background.
This text has white color on #80DE76 background.