HEX: #7D844D
RGB: (125,132,77)
#7D844D contains red, green and blue colors in about the same proportion. Web safe color of #7D844D is #669933 (or #693).
#7D844D color RGB value is (125,132,77).
RGB: (125,132,77) (49%,52%,30%)
R 125 of 255 = 49%
G 132 of 255 = 52%
B 77 of 255 = 30%
R + G + B ~ 44%. #7D844D is middle color (not dark and not light).
R + G + B =
125 + 132 + 77 = 334 (100%)
R 125 of 334 ~ 37.43%
G 132 of 334 ~ 39.52%
B 77 of 334 ~ 23.05%
#7D844D color CMYK value is (5,0,42,48).
CMYK: (5,0,42,48) C5M0Y42K48 (5%,0%,42%,48%) (0.05/0.00/0.42/0.48)
7D | 84 | 4D | |
---|---|---|---|
RGB | 125 | 132 | 77 |
HSL | 68° | 26.32% | 40.98% |
HSB/HSV | 68° | 41.67% | 51.76% |
CMYK | 5.30% | 0.00% | 41.67% |
48.24% |
HEX | 7D | 84 | 4D |
Decimal | 125 | 132 | 77 |
Binary | 1111101 | 10000100 | 1001101 |
Octal | 175 | 204 | 115 |
Examples of css and html codes for elements with #7D844D color. Also use rgb(125,132,77) instead hex code.
.myTextColor { color: #7D844D; }
<p style="color:#7D844D">This sample text font color is #7D844D.</p>
This text font color is #7D844D.
.myBgColor { background-color: #7D844D; }
<div style="background-color:#7D844D">Inner text</div>
This div background color is #7D844D.
.myBorderColor { border: 1px solid #7D844D; }
<div style="border:3px solid #7D844D">Div</div>
This div border color is #7D844D.
.myOpacity80 { color: #7D844D; opacity: 0.8; }
<p style="color:#7D844D;opacity:0.8;">80%</p>
Text with #7D844D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D844D;}
<p style="text-shadow: 3px 3px 1px #7D844D">Text here.</p>
This text has shadow with #7D844D color.
.textShadow {text-shadow: 3px 3px 1px #7D844D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D844D, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D844D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D844D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D844D, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D844D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D844D; -webkit-box-shadow: 1px 1px 3px 2px #7D844D; box-shadow: 1px 1px 3px 2px #7D844D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D844D; -webkit-box-shadow: 1px 1px 3px 2px #7D844D; box-shadow:1px 1px 3px 2px #7D844D;">
Div content here</div>
This text has color #7D844D on black background.
This text has color #7D844D on white background.
This text has black color on #7D844D background.
This text has white color on #7D844D background.