HEX: #50AB4C
RGB: (80,171,76)
#50AB4C contains mainly green color. Web safe color of #50AB4C is #669933 (or #693).
#50AB4C color RGB value is (80,171,76).
RGB: (80,171,76) (31%,67%,30%)
R 80 of 255 = 31%
G 171 of 255 = 67%
B 76 of 255 = 30%
R + G + B ~ 43%. #50AB4C is middle color (not dark and not light).
R + G + B =
80 + 171 + 76 = 327 (100%)
R 80 of 327 ~ 24.46%
G 171 of 327 ~ 52.29%
B 76 of 327 ~ 23.24%
#50AB4C color CMYK value is (53,0,56,33).
CMYK: (53,0,56,33) C53M0Y56K33 (53%,0%,56%,33%) (0.53/0.00/0.56/0.33)
50 | AB | 4C | |
---|---|---|---|
RGB | 80 | 171 | 76 |
HSL | 117° | 38.46% | 48.43% |
HSB/HSV | 117° | 55.56% | 67.06% |
CMYK | 53.22% | 0.00% | 55.56% |
32.94% |
HEX | 50 | AB | 4C |
Decimal | 80 | 171 | 76 |
Binary | 1010000 | 10101011 | 1001100 |
Octal | 120 | 253 | 114 |
Examples of css and html codes for elements with #50AB4C color. Also use rgb(80,171,76) instead hex code.
.myTextColor { color: #50AB4C; }
<p style="color:#50AB4C">This sample text font color is #50AB4C.</p>
This text font color is #50AB4C.
.myBgColor { background-color: #50AB4C; }
<div style="background-color:#50AB4C">Inner text</div>
This div background color is #50AB4C.
.myBorderColor { border: 1px solid #50AB4C; }
<div style="border:3px solid #50AB4C">Div</div>
This div border color is #50AB4C.
.myOpacity80 { color: #50AB4C; opacity: 0.8; }
<p style="color:#50AB4C;opacity:0.8;">80%</p>
Text with #50AB4C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50AB4C;}
<p style="text-shadow: 3px 3px 1px #50AB4C">Text here.</p>
This text has shadow with #50AB4C color.
.textShadow {text-shadow: 3px 3px 1px #50AB4C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50AB4C, 5px 5px 20px red">Text here.</p>
This text has shadow with #50AB4C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50AB4C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50AB4C, Direction=45, Strength=4)">Text</p>
This text has shadow with #50AB4C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50AB4C; -webkit-box-shadow: 1px 1px 3px 2px #50AB4C; box-shadow: 1px 1px 3px 2px #50AB4C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50AB4C; -webkit-box-shadow: 1px 1px 3px 2px #50AB4C; box-shadow:1px 1px 3px 2px #50AB4C;">
Div content here</div>
This text has color #50AB4C on black background.
This text has color #50AB4C on white background.
This text has black color on #50AB4C background.
This text has white color on #50AB4C background.