HEX: #4D632A
RGB: (77,99,42)
#4D632A contains red, green and blue colors in about the same proportion. Web safe color of #4D632A is #336633 (or #363).
#4D632A color RGB value is (77,99,42).
RGB: (77,99,42) (30%,39%,16%)
R 77 of 255 = 30%
G 99 of 255 = 39%
B 42 of 255 = 16%
R + G + B ~ 28%. #4D632A is quite dark color.
R + G + B =
77 + 99 + 42 = 218 (100%)
R 77 of 218 ~ 35.32%
G 99 of 218 ~ 45.41%
B 42 of 218 ~ 19.27%
#4D632A color CMYK value is (22,0,58,61).
CMYK: (22,0,58,61) C22M0Y58K61 (22%,0%,58%,61%) (0.22/0.00/0.58/0.61)
4D | 63 | 2A | |
---|---|---|---|
RGB | 77 | 99 | 42 |
HSL | 83° | 40.43% | 27.65% |
HSB/HSV | 83° | 57.58% | 38.82% |
CMYK | 22.22% | 0.00% | 57.58% |
61.18% |
HEX | 4D | 63 | 2A |
Decimal | 77 | 99 | 42 |
Binary | 1001101 | 1100011 | 101010 |
Octal | 115 | 143 | 52 |
Examples of css and html codes for elements with #4D632A color. Also use rgb(77,99,42) instead hex code.
.myTextColor { color: #4D632A; }
<p style="color:#4D632A">This sample text font color is #4D632A.</p>
This text font color is #4D632A.
.myBgColor { background-color: #4D632A; }
<div style="background-color:#4D632A">Inner text</div>
This div background color is #4D632A.
.myBorderColor { border: 1px solid #4D632A; }
<div style="border:3px solid #4D632A">Div</div>
This div border color is #4D632A.
.myOpacity80 { color: #4D632A; opacity: 0.8; }
<p style="color:#4D632A;opacity:0.8;">80%</p>
Text with #4D632A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4D632A;}
<p style="text-shadow: 3px 3px 1px #4D632A">Text here.</p>
This text has shadow with #4D632A color.
.textShadow {text-shadow: 3px 3px 1px #4D632A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4D632A, 5px 5px 20px red">Text here.</p>
This text has shadow with #4D632A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4D632A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4D632A, Direction=45, Strength=4)">Text</p>
This text has shadow with #4D632A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4D632A; -webkit-box-shadow: 1px 1px 3px 2px #4D632A; box-shadow: 1px 1px 3px 2px #4D632A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4D632A; -webkit-box-shadow: 1px 1px 3px 2px #4D632A; box-shadow:1px 1px 3px 2px #4D632A;">
Div content here</div>
This text has color #4D632A on black background.
This text has color #4D632A on white background.
This text has black color on #4D632A background.
This text has white color on #4D632A background.