HEX: #4DB45C
RGB: (77,180,92)
#4DB45C contains mainly green color. Web safe color of #4DB45C is #33CC66 (or #3C6).
#4DB45C color RGB value is (77,180,92).
RGB: (77,180,92) (30%,71%,36%)
R 77 of 255 = 30%
G 180 of 255 = 71%
B 92 of 255 = 36%
R + G + B ~ 46%. #4DB45C is middle color (not dark and not light).
R + G + B =
77 + 180 + 92 = 349 (100%)
R 77 of 349 ~ 22.06%
G 180 of 349 ~ 51.58%
B 92 of 349 ~ 26.36%
#4DB45C color CMYK value is (57,0,49,29).
CMYK: (57,0,49,29) C57M0Y49K29 (57%,0%,49%,29%) (0.57/0.00/0.49/0.29)
4D | B4 | 5C | |
---|---|---|---|
RGB | 77 | 180 | 92 |
HSL | 129° | 40.71% | 50.39% |
HSB/HSV | 129° | 57.22% | 70.59% |
CMYK | 57.22% | 0.00% | 48.89% |
29.41% |
HEX | 4D | B4 | 5C |
Decimal | 77 | 180 | 92 |
Binary | 1001101 | 10110100 | 1011100 |
Octal | 115 | 264 | 134 |
Examples of css and html codes for elements with #4DB45C color. Also use rgb(77,180,92) instead hex code.
.myTextColor { color: #4DB45C; }
<p style="color:#4DB45C">This sample text font color is #4DB45C.</p>
This text font color is #4DB45C.
.myBgColor { background-color: #4DB45C; }
<div style="background-color:#4DB45C">Inner text</div>
This div background color is #4DB45C.
.myBorderColor { border: 1px solid #4DB45C; }
<div style="border:3px solid #4DB45C">Div</div>
This div border color is #4DB45C.
.myOpacity80 { color: #4DB45C; opacity: 0.8; }
<p style="color:#4DB45C;opacity:0.8;">80%</p>
Text with #4DB45C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4DB45C;}
<p style="text-shadow: 3px 3px 1px #4DB45C">Text here.</p>
This text has shadow with #4DB45C color.
.textShadow {text-shadow: 3px 3px 1px #4DB45C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4DB45C, 5px 5px 20px red">Text here.</p>
This text has shadow with #4DB45C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4DB45C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4DB45C, Direction=45, Strength=4)">Text</p>
This text has shadow with #4DB45C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4DB45C; -webkit-box-shadow: 1px 1px 3px 2px #4DB45C; box-shadow: 1px 1px 3px 2px #4DB45C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4DB45C; -webkit-box-shadow: 1px 1px 3px 2px #4DB45C; box-shadow:1px 1px 3px 2px #4DB45C;">
Div content here</div>
This text has color #4DB45C on black background.
This text has color #4DB45C on white background.
This text has black color on #4DB45C background.
This text has white color on #4DB45C background.