HEX: #80C421
RGB: (128,196,33)
#80C421 contains mainly green color. Web safe color of #80C421 is #66CC33 (or #6C3).
#80C421 color RGB value is (128,196,33).
RGB: (128,196,33) (50%,77%,13%)
R 128 of 255 = 50%
G 196 of 255 = 77%
B 33 of 255 = 13%
R + G + B ~ 47%. #80C421 is middle color (not dark and not light).
R + G + B =
128 + 196 + 33 = 357 (100%)
R 128 of 357 ~ 35.85%
G 196 of 357 ~ 54.9%
B 33 of 357 ~ 9.24%
#80C421 color CMYK value is (35,0,83,23).
CMYK: (35,0,83,23) C35M0Y83K23 (35%,0%,83%,23%) (0.35/0.00/0.83/0.23)
80 | C4 | 21 | |
---|---|---|---|
RGB | 128 | 196 | 33 |
HSL | 85° | 71.18% | 44.90% |
HSB/HSV | 85° | 83.16% | 76.86% |
CMYK | 34.69% | 0.00% | 83.16% |
23.14% |
HEX | 80 | C4 | 21 |
Decimal | 128 | 196 | 33 |
Binary | 10000000 | 11000100 | 100001 |
Octal | 200 | 304 | 41 |
Examples of css and html codes for elements with #80C421 color. Also use rgb(128,196,33) instead hex code.
.myTextColor { color: #80C421; }
<p style="color:#80C421">This sample text font color is #80C421.</p>
This text font color is #80C421.
.myBgColor { background-color: #80C421; }
<div style="background-color:#80C421">Inner text</div>
This div background color is #80C421.
.myBorderColor { border: 1px solid #80C421; }
<div style="border:3px solid #80C421">Div</div>
This div border color is #80C421.
.myOpacity80 { color: #80C421; opacity: 0.8; }
<p style="color:#80C421;opacity:0.8;">80%</p>
Text with #80C421 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #80C421;}
<p style="text-shadow: 3px 3px 1px #80C421">Text here.</p>
This text has shadow with #80C421 color.
.textShadow {text-shadow: 3px 3px 1px #80C421, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #80C421, 5px 5px 20px red">Text here.</p>
This text has shadow with #80C421 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#80C421, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#80C421, Direction=45, Strength=4)">Text</p>
This text has shadow with #80C421 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #80C421; -webkit-box-shadow: 1px 1px 3px 2px #80C421; box-shadow: 1px 1px 3px 2px #80C421; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #80C421; -webkit-box-shadow: 1px 1px 3px 2px #80C421; box-shadow:1px 1px 3px 2px #80C421;">
Div content here</div>
This text has color #80C421 on black background.
This text has color #80C421 on white background.
This text has black color on #80C421 background.
This text has white color on #80C421 background.