HEX: #7E884F
RGB: (126,136,79)
#7E884F contains red, green and blue colors in about the same proportion. Web safe color of #7E884F is #669966 (or #696).
#7E884F color RGB value is (126,136,79).
RGB: (126,136,79) (49%,53%,31%)
R 126 of 255 = 49%
G 136 of 255 = 53%
B 79 of 255 = 31%
R + G + B ~ 44%. #7E884F is middle color (not dark and not light).
R + G + B =
126 + 136 + 79 = 341 (100%)
R 126 of 341 ~ 36.95%
G 136 of 341 ~ 39.88%
B 79 of 341 ~ 23.17%
#7E884F color CMYK value is (7,0,42,47).
CMYK: (7,0,42,47) C7M0Y42K47 (7%,0%,42%,47%) (0.07/0.00/0.42/0.47)
7E | 88 | 4F | |
---|---|---|---|
RGB | 126 | 136 | 79 |
HSL | 71° | 26.51% | 42.16% |
HSB/HSV | 71° | 41.91% | 53.33% |
CMYK | 7.35% | 0.00% | 41.91% |
46.67% |
HEX | 7E | 88 | 4F |
Decimal | 126 | 136 | 79 |
Binary | 1111110 | 10001000 | 1001111 |
Octal | 176 | 210 | 117 |
Examples of css and html codes for elements with #7E884F color. Also use rgb(126,136,79) instead hex code.
.myTextColor { color: #7E884F; }
<p style="color:#7E884F">This sample text font color is #7E884F.</p>
This text font color is #7E884F.
.myBgColor { background-color: #7E884F; }
<div style="background-color:#7E884F">Inner text</div>
This div background color is #7E884F.
.myBorderColor { border: 1px solid #7E884F; }
<div style="border:3px solid #7E884F">Div</div>
This div border color is #7E884F.
.myOpacity80 { color: #7E884F; opacity: 0.8; }
<p style="color:#7E884F;opacity:0.8;">80%</p>
Text with #7E884F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7E884F;}
<p style="text-shadow: 3px 3px 1px #7E884F">Text here.</p>
This text has shadow with #7E884F color.
.textShadow {text-shadow: 3px 3px 1px #7E884F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7E884F, 5px 5px 20px red">Text here.</p>
This text has shadow with #7E884F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7E884F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7E884F, Direction=45, Strength=4)">Text</p>
This text has shadow with #7E884F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7E884F; -webkit-box-shadow: 1px 1px 3px 2px #7E884F; box-shadow: 1px 1px 3px 2px #7E884F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7E884F; -webkit-box-shadow: 1px 1px 3px 2px #7E884F; box-shadow:1px 1px 3px 2px #7E884F;">
Div content here</div>
This text has color #7E884F on black background.
This text has color #7E884F on white background.
This text has black color on #7E884F background.
This text has white color on #7E884F background.