HEX: #50BC00
RGB: (80,188,0)
#50BC00 contains mainly green color. Web safe color of #50BC00 is #66CC00 (or #6C0).
#50BC00 color RGB value is (80,188,0).
RGB: (80,188,0) (31%,74%,0%)
R 80 of 255 = 31%
G 188 of 255 = 74%
B 0 of 255 = 0%
R + G + B ~ 35%. #50BC00 is quite dark color.
R + G + B =
80 + 188 + 0 = 268 (100%)
R 80 of 268 ~ 29.85%
G 188 of 268 ~ 70.15%
B 0 of 268 ~ 0%
#50BC00 color CMYK value is (57,0,100,26).
CMYK: (57,0,100,26) C57M0Y100K26 (57%,0%,100%,26%) (0.57/0.00/1.00/0.26)
50 | BC | 00 | |
---|---|---|---|
RGB | 80 | 188 | 0 |
HSL | 94° | 100.00% | 36.86% |
HSB/HSV | 94° | 100.00% | 73.73% |
CMYK | 57.45% | 0.00% | 100.00% |
26.27% |
HEX | 50 | BC | 00 |
Decimal | 80 | 188 | 0 |
Binary | 1010000 | 10111100 | 0 |
Octal | 120 | 274 | 0 |
Examples of css and html codes for elements with #50BC00 color. Also use rgb(80,188,0) instead hex code.
.myTextColor { color: #50BC00; }
<p style="color:#50BC00">This sample text font color is #50BC00.</p>
This text font color is #50BC00.
.myBgColor { background-color: #50BC00; }
<div style="background-color:#50BC00">Inner text</div>
This div background color is #50BC00.
.myBorderColor { border: 1px solid #50BC00; }
<div style="border:3px solid #50BC00">Div</div>
This div border color is #50BC00.
.myOpacity80 { color: #50BC00; opacity: 0.8; }
<p style="color:#50BC00;opacity:0.8;">80%</p>
Text with #50BC00 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #50BC00;}
<p style="text-shadow: 3px 3px 1px #50BC00">Text here.</p>
This text has shadow with #50BC00 color.
.textShadow {text-shadow: 3px 3px 1px #50BC00, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #50BC00, 5px 5px 20px red">Text here.</p>
This text has shadow with #50BC00 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#50BC00, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#50BC00, Direction=45, Strength=4)">Text</p>
This text has shadow with #50BC00 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #50BC00; -webkit-box-shadow: 1px 1px 3px 2px #50BC00; box-shadow: 1px 1px 3px 2px #50BC00; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #50BC00; -webkit-box-shadow: 1px 1px 3px 2px #50BC00; box-shadow:1px 1px 3px 2px #50BC00;">
Div content here</div>
This text has color #50BC00 on black background.
This text has color #50BC00 on white background.
This text has black color on #50BC00 background.
This text has white color on #50BC00 background.