HEX: #4D594C
RGB: (77,89,76)
#4D594C contains red, green and blue colors in about the same proportion. Web safe color of #4D594C is #336633 (or #363).
#4D594C color RGB value is (77,89,76).
RGB: (77,89,76) (30%,35%,30%)
R 77 of 255 = 30%
G 89 of 255 = 35%
B 76 of 255 = 30%
R + G + B ~ 32%. #4D594C is quite dark color.
R + G + B =
77 + 89 + 76 = 242 (100%)
R 77 of 242 ~ 31.82%
G 89 of 242 ~ 36.78%
B 76 of 242 ~ 31.4%
#4D594C color CMYK value is (13,0,15,65).
CMYK: (13,0,15,65) C13M0Y15K65 (13%,0%,15%,65%) (0.13/0.00/0.15/0.65)
4D | 59 | 4C | |
---|---|---|---|
RGB | 77 | 89 | 76 |
HSL | 115° | 7.88% | 32.35% |
HSB/HSV | 115° | 14.61% | 34.90% |
CMYK | 13.48% | 0.00% | 14.61% |
65.10% |
HEX | 4D | 59 | 4C |
Decimal | 77 | 89 | 76 |
Binary | 1001101 | 1011001 | 1001100 |
Octal | 115 | 131 | 114 |
Examples of css and html codes for elements with #4D594C color. Also use rgb(77,89,76) instead hex code.
.myTextColor { color: #4D594C; }
<p style="color:#4D594C">This sample text font color is #4D594C.</p>
This text font color is #4D594C.
.myBgColor { background-color: #4D594C; }
<div style="background-color:#4D594C">Inner text</div>
This div background color is #4D594C.
.myBorderColor { border: 1px solid #4D594C; }
<div style="border:3px solid #4D594C">Div</div>
This div border color is #4D594C.
.myOpacity80 { color: #4D594C; opacity: 0.8; }
<p style="color:#4D594C;opacity:0.8;">80%</p>
Text with #4D594C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4D594C;}
<p style="text-shadow: 3px 3px 1px #4D594C">Text here.</p>
This text has shadow with #4D594C color.
.textShadow {text-shadow: 3px 3px 1px #4D594C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4D594C, 5px 5px 20px red">Text here.</p>
This text has shadow with #4D594C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4D594C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4D594C, Direction=45, Strength=4)">Text</p>
This text has shadow with #4D594C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4D594C; -webkit-box-shadow: 1px 1px 3px 2px #4D594C; box-shadow: 1px 1px 3px 2px #4D594C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4D594C; -webkit-box-shadow: 1px 1px 3px 2px #4D594C; box-shadow:1px 1px 3px 2px #4D594C;">
Div content here</div>
This text has color #4D594C on black background.
This text has color #4D594C on white background.
This text has black color on #4D594C background.
This text has white color on #4D594C background.