HEX: #80C266
RGB: (128,194,102)
#80C266 contains mainly green color. Web safe color of #80C266 is #66CC66 (or #6C6).
#80C266 color RGB value is (128,194,102).
RGB: (128,194,102) (50%,76%,40%)
R 128 of 255 = 50%
G 194 of 255 = 76%
B 102 of 255 = 40%
R + G + B ~ 55%. #80C266 is middle color (not dark and not light).
R + G + B =
128 + 194 + 102 = 424 (100%)
R 128 of 424 ~ 30.19%
G 194 of 424 ~ 45.75%
B 102 of 424 ~ 24.06%
#80C266 color CMYK value is (34,0,47,24).
CMYK: (34,0,47,24) C34M0Y47K24 (34%,0%,47%,24%) (0.34/0.00/0.47/0.24)
80 | C2 | 66 | |
---|---|---|---|
RGB | 128 | 194 | 102 |
HSL | 103° | 42.99% | 58.04% |
HSB/HSV | 103° | 47.42% | 76.08% |
CMYK | 34.02% | 0.00% | 47.42% |
23.92% |
HEX | 80 | C2 | 66 |
Decimal | 128 | 194 | 102 |
Binary | 10000000 | 11000010 | 1100110 |
Octal | 200 | 302 | 146 |
Examples of css and html codes for elements with #80C266 color. Also use rgb(128,194,102) instead hex code.
.myTextColor { color: #80C266; }
<p style="color:#80C266">This sample text font color is #80C266.</p>
This text font color is #80C266.
.myBgColor { background-color: #80C266; }
<div style="background-color:#80C266">Inner text</div>
This div background color is #80C266.
.myBorderColor { border: 1px solid #80C266; }
<div style="border:3px solid #80C266">Div</div>
This div border color is #80C266.
.myOpacity80 { color: #80C266; opacity: 0.8; }
<p style="color:#80C266;opacity:0.8;">80%</p>
Text with #80C266 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #80C266;}
<p style="text-shadow: 3px 3px 1px #80C266">Text here.</p>
This text has shadow with #80C266 color.
.textShadow {text-shadow: 3px 3px 1px #80C266, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #80C266, 5px 5px 20px red">Text here.</p>
This text has shadow with #80C266 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#80C266, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#80C266, Direction=45, Strength=4)">Text</p>
This text has shadow with #80C266 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #80C266; -webkit-box-shadow: 1px 1px 3px 2px #80C266; box-shadow: 1px 1px 3px 2px #80C266; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #80C266; -webkit-box-shadow: 1px 1px 3px 2px #80C266; box-shadow:1px 1px 3px 2px #80C266;">
Div content here</div>
This text has color #80C266 on black background.
This text has color #80C266 on white background.
This text has black color on #80C266 background.
This text has white color on #80C266 background.