HEX: #4D994F
RGB: (77,153,79)
#4D994F contains mainly green color. Web safe color of #4D994F is #339966 (or #396).
#4D994F color RGB value is (77,153,79).
RGB: (77,153,79) (30%,60%,31%)
R 77 of 255 = 30%
G 153 of 255 = 60%
B 79 of 255 = 31%
R + G + B ~ 40%. #4D994F is middle color (not dark and not light).
R + G + B =
77 + 153 + 79 = 309 (100%)
R 77 of 309 ~ 24.92%
G 153 of 309 ~ 49.51%
B 79 of 309 ~ 25.57%
#4D994F color CMYK value is (50,0,48,40).
CMYK: (50,0,48,40) C50M0Y48K40 (50%,0%,48%,40%) (0.50/0.00/0.48/0.40)
4D | 99 | 4F | |
---|---|---|---|
RGB | 77 | 153 | 79 |
HSL | 122° | 33.04% | 45.10% |
HSB/HSV | 122° | 49.67% | 60.00% |
CMYK | 49.67% | 0.00% | 48.37% |
40.00% |
HEX | 4D | 99 | 4F |
Decimal | 77 | 153 | 79 |
Binary | 1001101 | 10011001 | 1001111 |
Octal | 115 | 231 | 117 |
Examples of css and html codes for elements with #4D994F color. Also use rgb(77,153,79) instead hex code.
.myTextColor { color: #4D994F; }
<p style="color:#4D994F">This sample text font color is #4D994F.</p>
This text font color is #4D994F.
.myBgColor { background-color: #4D994F; }
<div style="background-color:#4D994F">Inner text</div>
This div background color is #4D994F.
.myBorderColor { border: 1px solid #4D994F; }
<div style="border:3px solid #4D994F">Div</div>
This div border color is #4D994F.
.myOpacity80 { color: #4D994F; opacity: 0.8; }
<p style="color:#4D994F;opacity:0.8;">80%</p>
Text with #4D994F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4D994F;}
<p style="text-shadow: 3px 3px 1px #4D994F">Text here.</p>
This text has shadow with #4D994F color.
.textShadow {text-shadow: 3px 3px 1px #4D994F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4D994F, 5px 5px 20px red">Text here.</p>
This text has shadow with #4D994F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4D994F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4D994F, Direction=45, Strength=4)">Text</p>
This text has shadow with #4D994F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4D994F; -webkit-box-shadow: 1px 1px 3px 2px #4D994F; box-shadow: 1px 1px 3px 2px #4D994F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4D994F; -webkit-box-shadow: 1px 1px 3px 2px #4D994F; box-shadow:1px 1px 3px 2px #4D994F;">
Div content here</div>
This text has color #4D994F on black background.
This text has color #4D994F on white background.
This text has black color on #4D994F background.
This text has white color on #4D994F background.