HEX: #7EA97B
RGB: (126,169,123)
#7EA97B contains red, green and blue colors in about the same proportion. Web safe color of #7EA97B is #669966 (or #696).
#7EA97B color RGB value is (126,169,123).
RGB: (126,169,123) (49%,66%,48%)
R 126 of 255 = 49%
G 169 of 255 = 66%
B 123 of 255 = 48%
R + G + B ~ 54%. #7EA97B is middle color (not dark and not light).
R + G + B =
126 + 169 + 123 = 418 (100%)
R 126 of 418 ~ 30.14%
G 169 of 418 ~ 40.43%
B 123 of 418 ~ 29.43%
#7EA97B color CMYK value is (25,0,27,34).
CMYK: (25,0,27,34) C25M0Y27K34 (25%,0%,27%,34%) (0.25/0.00/0.27/0.34)
7E | A9 | 7B | |
---|---|---|---|
RGB | 126 | 169 | 123 |
HSL | 116° | 21.10% | 57.25% |
HSB/HSV | 116° | 27.22% | 66.27% |
CMYK | 25.44% | 0.00% | 27.22% |
33.73% |
HEX | 7E | A9 | 7B |
Decimal | 126 | 169 | 123 |
Binary | 1111110 | 10101001 | 1111011 |
Octal | 176 | 251 | 173 |
Examples of css and html codes for elements with #7EA97B color. Also use rgb(126,169,123) instead hex code.
.myTextColor { color: #7EA97B; }
<p style="color:#7EA97B">This sample text font color is #7EA97B.</p>
This text font color is #7EA97B.
.myBgColor { background-color: #7EA97B; }
<div style="background-color:#7EA97B">Inner text</div>
This div background color is #7EA97B.
.myBorderColor { border: 1px solid #7EA97B; }
<div style="border:3px solid #7EA97B">Div</div>
This div border color is #7EA97B.
.myOpacity80 { color: #7EA97B; opacity: 0.8; }
<p style="color:#7EA97B;opacity:0.8;">80%</p>
Text with #7EA97B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EA97B;}
<p style="text-shadow: 3px 3px 1px #7EA97B">Text here.</p>
This text has shadow with #7EA97B color.
.textShadow {text-shadow: 3px 3px 1px #7EA97B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EA97B, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EA97B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EA97B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EA97B, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EA97B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EA97B; -webkit-box-shadow: 1px 1px 3px 2px #7EA97B; box-shadow: 1px 1px 3px 2px #7EA97B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EA97B; -webkit-box-shadow: 1px 1px 3px 2px #7EA97B; box-shadow:1px 1px 3px 2px #7EA97B;">
Div content here</div>
This text has color #7EA97B on black background.
This text has color #7EA97B on white background.
This text has black color on #7EA97B background.
This text has white color on #7EA97B background.