HEX: #4DD332
RGB: (77,211,50)
#4DD332 contains mainly green color. Web safe color of #4DD332 is #33CC33 (or #3C3).
#4DD332 color RGB value is (77,211,50).
RGB: (77,211,50) (30%,83%,20%)
R 77 of 255 = 30%
G 211 of 255 = 83%
B 50 of 255 = 20%
R + G + B ~ 44%. #4DD332 is middle color (not dark and not light).
R + G + B =
77 + 211 + 50 = 338 (100%)
R 77 of 338 ~ 22.78%
G 211 of 338 ~ 62.43%
B 50 of 338 ~ 14.79%
#4DD332 color CMYK value is (64,0,76,17).
CMYK: (64,0,76,17) C64M0Y76K17 (64%,0%,76%,17%) (0.64/0.00/0.76/0.17)
4D | D3 | 32 | |
---|---|---|---|
RGB | 77 | 211 | 50 |
HSL | 110° | 64.66% | 51.18% |
HSB/HSV | 110° | 76.30% | 82.75% |
CMYK | 63.51% | 0.00% | 76.30% |
17.25% |
HEX | 4D | D3 | 32 |
Decimal | 77 | 211 | 50 |
Binary | 1001101 | 11010011 | 110010 |
Octal | 115 | 323 | 62 |
Examples of css and html codes for elements with #4DD332 color. Also use rgb(77,211,50) instead hex code.
.myTextColor { color: #4DD332; }
<p style="color:#4DD332">This sample text font color is #4DD332.</p>
This text font color is #4DD332.
.myBgColor { background-color: #4DD332; }
<div style="background-color:#4DD332">Inner text</div>
This div background color is #4DD332.
.myBorderColor { border: 1px solid #4DD332; }
<div style="border:3px solid #4DD332">Div</div>
This div border color is #4DD332.
.myOpacity80 { color: #4DD332; opacity: 0.8; }
<p style="color:#4DD332;opacity:0.8;">80%</p>
Text with #4DD332 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4DD332;}
<p style="text-shadow: 3px 3px 1px #4DD332">Text here.</p>
This text has shadow with #4DD332 color.
.textShadow {text-shadow: 3px 3px 1px #4DD332, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4DD332, 5px 5px 20px red">Text here.</p>
This text has shadow with #4DD332 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4DD332, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4DD332, Direction=45, Strength=4)">Text</p>
This text has shadow with #4DD332 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4DD332; -webkit-box-shadow: 1px 1px 3px 2px #4DD332; box-shadow: 1px 1px 3px 2px #4DD332; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4DD332; -webkit-box-shadow: 1px 1px 3px 2px #4DD332; box-shadow:1px 1px 3px 2px #4DD332;">
Div content here</div>
This text has color #4DD332 on black background.
This text has color #4DD332 on white background.
This text has black color on #4DD332 background.
This text has white color on #4DD332 background.