HEX: #7B976D
RGB: (123,151,109)
#7B976D contains red, green and blue colors in about the same proportion. Web safe color of #7B976D is #669966 (or #696).
#7B976D color RGB value is (123,151,109).
RGB: (123,151,109) (48%,59%,43%)
R 123 of 255 = 48%
G 151 of 255 = 59%
B 109 of 255 = 43%
R + G + B ~ 50%. #7B976D is middle color (not dark and not light).
R + G + B =
123 + 151 + 109 = 383 (100%)
R 123 of 383 ~ 32.11%
G 151 of 383 ~ 39.43%
B 109 of 383 ~ 28.46%
#7B976D color CMYK value is (19,0,28,41).
CMYK: (19,0,28,41) C19M0Y28K41 (19%,0%,28%,41%) (0.19/0.00/0.28/0.41)
7B | 97 | 6D | |
---|---|---|---|
RGB | 123 | 151 | 109 |
HSL | 100° | 16.80% | 50.98% |
HSB/HSV | 100° | 27.81% | 59.22% |
CMYK | 18.54% | 0.00% | 27.81% |
40.78% |
HEX | 7B | 97 | 6D |
Decimal | 123 | 151 | 109 |
Binary | 1111011 | 10010111 | 1101101 |
Octal | 173 | 227 | 155 |
Examples of css and html codes for elements with #7B976D color. Also use rgb(123,151,109) instead hex code.
.myTextColor { color: #7B976D; }
<p style="color:#7B976D">This sample text font color is #7B976D.</p>
This text font color is #7B976D.
.myBgColor { background-color: #7B976D; }
<div style="background-color:#7B976D">Inner text</div>
This div background color is #7B976D.
.myBorderColor { border: 1px solid #7B976D; }
<div style="border:3px solid #7B976D">Div</div>
This div border color is #7B976D.
.myOpacity80 { color: #7B976D; opacity: 0.8; }
<p style="color:#7B976D;opacity:0.8;">80%</p>
Text with #7B976D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7B976D;}
<p style="text-shadow: 3px 3px 1px #7B976D">Text here.</p>
This text has shadow with #7B976D color.
.textShadow {text-shadow: 3px 3px 1px #7B976D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7B976D, 5px 5px 20px red">Text here.</p>
This text has shadow with #7B976D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7B976D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7B976D, Direction=45, Strength=4)">Text</p>
This text has shadow with #7B976D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7B976D; -webkit-box-shadow: 1px 1px 3px 2px #7B976D; box-shadow: 1px 1px 3px 2px #7B976D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7B976D; -webkit-box-shadow: 1px 1px 3px 2px #7B976D; box-shadow:1px 1px 3px 2px #7B976D;">
Div content here</div>
This text has color #7B976D on black background.
This text has color #7B976D on white background.
This text has black color on #7B976D background.
This text has white color on #7B976D background.