HEX: #4DB981
RGB: (77,185,129)
#4DB981 contains mainly green and blue colors. Web safe color of #4DB981 is #33CC99 (or #3C9).
#4DB981 color RGB value is (77,185,129).
RGB: (77,185,129) (30%,73%,51%)
R 77 of 255 = 30%
G 185 of 255 = 73%
B 129 of 255 = 51%
R + G + B ~ 51%. #4DB981 is middle color (not dark and not light).
R + G + B =
77 + 185 + 129 = 391 (100%)
R 77 of 391 ~ 19.69%
G 185 of 391 ~ 47.31%
B 129 of 391 ~ 32.99%
#4DB981 color CMYK value is (58,0,30,27).
CMYK: (58,0,30,27) C58M0Y30K27 (58%,0%,30%,27%) (0.58/0.00/0.30/0.27)
4D | B9 | 81 | |
---|---|---|---|
RGB | 77 | 185 | 129 |
HSL | 149° | 43.55% | 51.37% |
HSB/HSV | 149° | 58.38% | 72.55% |
CMYK | 58.38% | 0.00% | 30.27% |
27.45% |
HEX | 4D | B9 | 81 |
Decimal | 77 | 185 | 129 |
Binary | 1001101 | 10111001 | 10000001 |
Octal | 115 | 271 | 201 |
Examples of css and html codes for elements with #4DB981 color. Also use rgb(77,185,129) instead hex code.
.myTextColor { color: #4DB981; }
<p style="color:#4DB981">This sample text font color is #4DB981.</p>
This text font color is #4DB981.
.myBgColor { background-color: #4DB981; }
<div style="background-color:#4DB981">Inner text</div>
This div background color is #4DB981.
.myBorderColor { border: 1px solid #4DB981; }
<div style="border:3px solid #4DB981">Div</div>
This div border color is #4DB981.
.myOpacity80 { color: #4DB981; opacity: 0.8; }
<p style="color:#4DB981;opacity:0.8;">80%</p>
Text with #4DB981 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4DB981;}
<p style="text-shadow: 3px 3px 1px #4DB981">Text here.</p>
This text has shadow with #4DB981 color.
.textShadow {text-shadow: 3px 3px 1px #4DB981, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4DB981, 5px 5px 20px red">Text here.</p>
This text has shadow with #4DB981 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4DB981, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4DB981, Direction=45, Strength=4)">Text</p>
This text has shadow with #4DB981 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4DB981; -webkit-box-shadow: 1px 1px 3px 2px #4DB981; box-shadow: 1px 1px 3px 2px #4DB981; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4DB981; -webkit-box-shadow: 1px 1px 3px 2px #4DB981; box-shadow:1px 1px 3px 2px #4DB981;">
Div content here</div>
This text has color #4DB981 on black background.
This text has color #4DB981 on white background.
This text has black color on #4DB981 background.
This text has white color on #4DB981 background.