HEX: #4DD47D
RGB: (77,212,125)
#4DD47D contains mainly green color. Web safe color of #4DD47D is #33CC66 (or #3C6).
#4DD47D color RGB value is (77,212,125).
RGB: (77,212,125) (30%,83%,49%)
R 77 of 255 = 30%
G 212 of 255 = 83%
B 125 of 255 = 49%
R + G + B ~ 54%. #4DD47D is middle color (not dark and not light).
R + G + B =
77 + 212 + 125 = 414 (100%)
R 77 of 414 ~ 18.6%
G 212 of 414 ~ 51.21%
B 125 of 414 ~ 30.19%
#4DD47D color CMYK value is (64,0,41,17).
CMYK: (64,0,41,17) C64M0Y41K17 (64%,0%,41%,17%) (0.64/0.00/0.41/0.17)
4D | D4 | 7D | |
---|---|---|---|
RGB | 77 | 212 | 125 |
HSL | 141° | 61.09% | 56.67% |
HSB/HSV | 141° | 63.68% | 83.14% |
CMYK | 63.68% | 0.00% | 41.04% |
16.86% |
HEX | 4D | D4 | 7D |
Decimal | 77 | 212 | 125 |
Binary | 1001101 | 11010100 | 1111101 |
Octal | 115 | 324 | 175 |
Examples of css and html codes for elements with #4DD47D color. Also use rgb(77,212,125) instead hex code.
.myTextColor { color: #4DD47D; }
<p style="color:#4DD47D">This sample text font color is #4DD47D.</p>
This text font color is #4DD47D.
.myBgColor { background-color: #4DD47D; }
<div style="background-color:#4DD47D">Inner text</div>
This div background color is #4DD47D.
.myBorderColor { border: 1px solid #4DD47D; }
<div style="border:3px solid #4DD47D">Div</div>
This div border color is #4DD47D.
.myOpacity80 { color: #4DD47D; opacity: 0.8; }
<p style="color:#4DD47D;opacity:0.8;">80%</p>
Text with #4DD47D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4DD47D;}
<p style="text-shadow: 3px 3px 1px #4DD47D">Text here.</p>
This text has shadow with #4DD47D color.
.textShadow {text-shadow: 3px 3px 1px #4DD47D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4DD47D, 5px 5px 20px red">Text here.</p>
This text has shadow with #4DD47D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4DD47D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4DD47D, Direction=45, Strength=4)">Text</p>
This text has shadow with #4DD47D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4DD47D; -webkit-box-shadow: 1px 1px 3px 2px #4DD47D; box-shadow: 1px 1px 3px 2px #4DD47D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4DD47D; -webkit-box-shadow: 1px 1px 3px 2px #4DD47D; box-shadow:1px 1px 3px 2px #4DD47D;">
Div content here</div>
This text has color #4DD47D on black background.
This text has color #4DD47D on white background.
This text has black color on #4DD47D background.
This text has white color on #4DD47D background.