HEX: #7E763C
RGB: (126,118,60)
#7E763C contains mainly red and green colors. Web safe color of #7E763C is #666633 (or #663).
#7E763C color RGB value is (126,118,60).
RGB: (126,118,60) (49%,46%,24%)
R 126 of 255 = 49%
G 118 of 255 = 46%
B 60 of 255 = 24%
R + G + B ~ 40%. #7E763C is middle color (not dark and not light).
R + G + B =
126 + 118 + 60 = 304 (100%)
R 126 of 304 ~ 41.45%
G 118 of 304 ~ 38.82%
B 60 of 304 ~ 19.74%
#7E763C color CMYK value is (0,6,52,51).
CMYK: (0,6,52,51) C0M6Y52K51 (0%,6%,52%,51%) (0.00/0.06/0.52/0.51)
7E | 76 | 3C | |
---|---|---|---|
RGB | 126 | 118 | 60 |
HSL | 53° | 35.48% | 36.47% |
HSB/HSV | 53° | 52.38% | 49.41% |
CMYK | 0.00% | 6.35% | 52.38% |
50.59% |
HEX | 7E | 76 | 3C |
Decimal | 126 | 118 | 60 |
Binary | 1111110 | 1110110 | 111100 |
Octal | 176 | 166 | 74 |
Examples of css and html codes for elements with #7E763C color. Also use rgb(126,118,60) instead hex code.
.myTextColor { color: #7E763C; }
<p style="color:#7E763C">This sample text font color is #7E763C.</p>
This text font color is #7E763C.
.myBgColor { background-color: #7E763C; }
<div style="background-color:#7E763C">Inner text</div>
This div background color is #7E763C.
.myBorderColor { border: 1px solid #7E763C; }
<div style="border:3px solid #7E763C">Div</div>
This div border color is #7E763C.
.myOpacity80 { color: #7E763C; opacity: 0.8; }
<p style="color:#7E763C;opacity:0.8;">80%</p>
Text with #7E763C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7E763C;}
<p style="text-shadow: 3px 3px 1px #7E763C">Text here.</p>
This text has shadow with #7E763C color.
.textShadow {text-shadow: 3px 3px 1px #7E763C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7E763C, 5px 5px 20px red">Text here.</p>
This text has shadow with #7E763C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7E763C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7E763C, Direction=45, Strength=4)">Text</p>
This text has shadow with #7E763C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7E763C; -webkit-box-shadow: 1px 1px 3px 2px #7E763C; box-shadow: 1px 1px 3px 2px #7E763C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7E763C; -webkit-box-shadow: 1px 1px 3px 2px #7E763C; box-shadow:1px 1px 3px 2px #7E763C;">
Div content here</div>
This text has color #7E763C on black background.
This text has color #7E763C on white background.
This text has black color on #7E763C background.
This text has white color on #7E763C background.