HEX: #7D977F
RGB: (125,151,127)
#7D977F contains red, green and blue colors in about the same proportion. Web safe color of #7D977F is #669966 (or #696).
#7D977F color RGB value is (125,151,127).
RGB: (125,151,127) (49%,59%,50%)
R 125 of 255 = 49%
G 151 of 255 = 59%
B 127 of 255 = 50%
R + G + B ~ 53%. #7D977F is middle color (not dark and not light).
R + G + B =
125 + 151 + 127 = 403 (100%)
R 125 of 403 ~ 31.02%
G 151 of 403 ~ 37.47%
B 127 of 403 ~ 31.51%
#7D977F color CMYK value is (17,0,16,41).
CMYK: (17,0,16,41) C17M0Y16K41 (17%,0%,16%,41%) (0.17/0.00/0.16/0.41)
7D | 97 | 7F | |
---|---|---|---|
RGB | 125 | 151 | 127 |
HSL | 125° | 11.11% | 54.12% |
HSB/HSV | 125° | 17.22% | 59.22% |
CMYK | 17.22% | 0.00% | 15.89% |
40.78% |
HEX | 7D | 97 | 7F |
Decimal | 125 | 151 | 127 |
Binary | 1111101 | 10010111 | 1111111 |
Octal | 175 | 227 | 177 |
Examples of css and html codes for elements with #7D977F color. Also use rgb(125,151,127) instead hex code.
.myTextColor { color: #7D977F; }
<p style="color:#7D977F">This sample text font color is #7D977F.</p>
This text font color is #7D977F.
.myBgColor { background-color: #7D977F; }
<div style="background-color:#7D977F">Inner text</div>
This div background color is #7D977F.
.myBorderColor { border: 1px solid #7D977F; }
<div style="border:3px solid #7D977F">Div</div>
This div border color is #7D977F.
.myOpacity80 { color: #7D977F; opacity: 0.8; }
<p style="color:#7D977F;opacity:0.8;">80%</p>
Text with #7D977F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D977F;}
<p style="text-shadow: 3px 3px 1px #7D977F">Text here.</p>
This text has shadow with #7D977F color.
.textShadow {text-shadow: 3px 3px 1px #7D977F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D977F, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D977F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D977F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D977F, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D977F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D977F; -webkit-box-shadow: 1px 1px 3px 2px #7D977F; box-shadow: 1px 1px 3px 2px #7D977F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D977F; -webkit-box-shadow: 1px 1px 3px 2px #7D977F; box-shadow:1px 1px 3px 2px #7D977F;">
Div content here</div>
This text has color #7D977F on black background.
This text has color #7D977F on white background.
This text has black color on #7D977F background.
This text has white color on #7D977F background.