HEX: #4D672D
RGB: (77,103,45)
#4D672D contains red, green and blue colors in about the same proportion. Web safe color of #4D672D is #336633 (or #363).
#4D672D color RGB value is (77,103,45).
RGB: (77,103,45) (30%,40%,18%)
R 77 of 255 = 30%
G 103 of 255 = 40%
B 45 of 255 = 18%
R + G + B ~ 29%. #4D672D is quite dark color.
R + G + B =
77 + 103 + 45 = 225 (100%)
R 77 of 225 ~ 34.22%
G 103 of 225 ~ 45.78%
B 45 of 225 ~ 20%
#4D672D color CMYK value is (25,0,56,60).
CMYK: (25,0,56,60) C25M0Y56K60 (25%,0%,56%,60%) (0.25/0.00/0.56/0.60)
4D | 67 | 2D | |
---|---|---|---|
RGB | 77 | 103 | 45 |
HSL | 87° | 39.19% | 29.02% |
HSB/HSV | 87° | 56.31% | 40.39% |
CMYK | 25.24% | 0.00% | 56.31% |
59.61% |
HEX | 4D | 67 | 2D |
Decimal | 77 | 103 | 45 |
Binary | 1001101 | 1100111 | 101101 |
Octal | 115 | 147 | 55 |
Examples of css and html codes for elements with #4D672D color. Also use rgb(77,103,45) instead hex code.
.myTextColor { color: #4D672D; }
<p style="color:#4D672D">This sample text font color is #4D672D.</p>
This text font color is #4D672D.
.myBgColor { background-color: #4D672D; }
<div style="background-color:#4D672D">Inner text</div>
This div background color is #4D672D.
.myBorderColor { border: 1px solid #4D672D; }
<div style="border:3px solid #4D672D">Div</div>
This div border color is #4D672D.
.myOpacity80 { color: #4D672D; opacity: 0.8; }
<p style="color:#4D672D;opacity:0.8;">80%</p>
Text with #4D672D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4D672D;}
<p style="text-shadow: 3px 3px 1px #4D672D">Text here.</p>
This text has shadow with #4D672D color.
.textShadow {text-shadow: 3px 3px 1px #4D672D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4D672D, 5px 5px 20px red">Text here.</p>
This text has shadow with #4D672D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4D672D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4D672D, Direction=45, Strength=4)">Text</p>
This text has shadow with #4D672D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4D672D; -webkit-box-shadow: 1px 1px 3px 2px #4D672D; box-shadow: 1px 1px 3px 2px #4D672D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4D672D; -webkit-box-shadow: 1px 1px 3px 2px #4D672D; box-shadow:1px 1px 3px 2px #4D672D;">
Div content here</div>
This text has color #4D672D on black background.
This text has color #4D672D on white background.
This text has black color on #4D672D background.
This text has white color on #4D672D background.