HEX: #4DCC5F
RGB: (77,204,95)
#4DCC5F contains mainly green color. Web safe color of #4DCC5F is #33CC66 (or #3C6).
#4DCC5F color RGB value is (77,204,95).
RGB: (77,204,95) (30%,80%,37%)
R 77 of 255 = 30%
G 204 of 255 = 80%
B 95 of 255 = 37%
R + G + B ~ 49%. #4DCC5F is middle color (not dark and not light).
R + G + B =
77 + 204 + 95 = 376 (100%)
R 77 of 376 ~ 20.48%
G 204 of 376 ~ 54.26%
B 95 of 376 ~ 25.27%
#4DCC5F color CMYK value is (62,0,53,20).
CMYK: (62,0,53,20) C62M0Y53K20 (62%,0%,53%,20%) (0.62/0.00/0.53/0.20)
4D | CC | 5F | |
---|---|---|---|
RGB | 77 | 204 | 95 |
HSL | 129° | 55.46% | 55.10% |
HSB/HSV | 129° | 62.25% | 80.00% |
CMYK | 62.25% | 0.00% | 53.43% |
20.00% |
HEX | 4D | CC | 5F |
Decimal | 77 | 204 | 95 |
Binary | 1001101 | 11001100 | 1011111 |
Octal | 115 | 314 | 137 |
Examples of css and html codes for elements with #4DCC5F color. Also use rgb(77,204,95) instead hex code.
.myTextColor { color: #4DCC5F; }
<p style="color:#4DCC5F">This sample text font color is #4DCC5F.</p>
This text font color is #4DCC5F.
.myBgColor { background-color: #4DCC5F; }
<div style="background-color:#4DCC5F">Inner text</div>
This div background color is #4DCC5F.
.myBorderColor { border: 1px solid #4DCC5F; }
<div style="border:3px solid #4DCC5F">Div</div>
This div border color is #4DCC5F.
.myOpacity80 { color: #4DCC5F; opacity: 0.8; }
<p style="color:#4DCC5F;opacity:0.8;">80%</p>
Text with #4DCC5F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4DCC5F;}
<p style="text-shadow: 3px 3px 1px #4DCC5F">Text here.</p>
This text has shadow with #4DCC5F color.
.textShadow {text-shadow: 3px 3px 1px #4DCC5F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4DCC5F, 5px 5px 20px red">Text here.</p>
This text has shadow with #4DCC5F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4DCC5F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4DCC5F, Direction=45, Strength=4)">Text</p>
This text has shadow with #4DCC5F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4DCC5F; -webkit-box-shadow: 1px 1px 3px 2px #4DCC5F; box-shadow: 1px 1px 3px 2px #4DCC5F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4DCC5F; -webkit-box-shadow: 1px 1px 3px 2px #4DCC5F; box-shadow:1px 1px 3px 2px #4DCC5F;">
Div content here</div>
This text has color #4DCC5F on black background.
This text has color #4DCC5F on white background.
This text has black color on #4DCC5F background.
This text has white color on #4DCC5F background.