HEX: #7A996F
RGB: (122,153,111)
#7A996F contains red, green and blue colors in about the same proportion. Web safe color of #7A996F is #669966 (or #696).
#7A996F color RGB value is (122,153,111).
RGB: (122,153,111) (48%,60%,44%)
R 122 of 255 = 48%
G 153 of 255 = 60%
B 111 of 255 = 44%
R + G + B ~ 51%. #7A996F is middle color (not dark and not light).
R + G + B =
122 + 153 + 111 = 386 (100%)
R 122 of 386 ~ 31.61%
G 153 of 386 ~ 39.64%
B 111 of 386 ~ 28.76%
#7A996F color CMYK value is (20,0,27,40).
CMYK: (20,0,27,40) C20M0Y27K40 (20%,0%,27%,40%) (0.20/0.00/0.27/0.40)
7A | 99 | 6F | |
---|---|---|---|
RGB | 122 | 153 | 111 |
HSL | 104° | 17.07% | 51.76% |
HSB/HSV | 104° | 27.45% | 60.00% |
CMYK | 20.26% | 0.00% | 27.45% |
40.00% |
HEX | 7A | 99 | 6F |
Decimal | 122 | 153 | 111 |
Binary | 1111010 | 10011001 | 1101111 |
Octal | 172 | 231 | 157 |
Examples of css and html codes for elements with #7A996F color. Also use rgb(122,153,111) instead hex code.
.myTextColor { color: #7A996F; }
<p style="color:#7A996F">This sample text font color is #7A996F.</p>
This text font color is #7A996F.
.myBgColor { background-color: #7A996F; }
<div style="background-color:#7A996F">Inner text</div>
This div background color is #7A996F.
.myBorderColor { border: 1px solid #7A996F; }
<div style="border:3px solid #7A996F">Div</div>
This div border color is #7A996F.
.myOpacity80 { color: #7A996F; opacity: 0.8; }
<p style="color:#7A996F;opacity:0.8;">80%</p>
Text with #7A996F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7A996F;}
<p style="text-shadow: 3px 3px 1px #7A996F">Text here.</p>
This text has shadow with #7A996F color.
.textShadow {text-shadow: 3px 3px 1px #7A996F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7A996F, 5px 5px 20px red">Text here.</p>
This text has shadow with #7A996F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7A996F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7A996F, Direction=45, Strength=4)">Text</p>
This text has shadow with #7A996F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7A996F; -webkit-box-shadow: 1px 1px 3px 2px #7A996F; box-shadow: 1px 1px 3px 2px #7A996F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7A996F; -webkit-box-shadow: 1px 1px 3px 2px #7A996F; box-shadow:1px 1px 3px 2px #7A996F;">
Div content here</div>
This text has color #7A996F on black background.
This text has color #7A996F on white background.
This text has black color on #7A996F background.
This text has white color on #7A996F background.