HEX: #7EB62E
RGB: (126,182,46)
#7EB62E contains mainly red and green colors. Web safe color of #7EB62E is #66CC33 (or #6C3).
#7EB62E color RGB value is (126,182,46).
RGB: (126,182,46) (49%,71%,18%)
R 126 of 255 = 49%
G 182 of 255 = 71%
B 46 of 255 = 18%
R + G + B ~ 46%. #7EB62E is middle color (not dark and not light).
R + G + B =
126 + 182 + 46 = 354 (100%)
R 126 of 354 ~ 35.59%
G 182 of 354 ~ 51.41%
B 46 of 354 ~ 12.99%
#7EB62E color CMYK value is (31,0,75,29).
CMYK: (31,0,75,29) C31M0Y75K29 (31%,0%,75%,29%) (0.31/0.00/0.75/0.29)
7E | B6 | 2E | |
---|---|---|---|
RGB | 126 | 182 | 46 |
HSL | 85° | 59.65% | 44.71% |
HSB/HSV | 85° | 74.73% | 71.37% |
CMYK | 30.77% | 0.00% | 74.73% |
28.63% |
HEX | 7E | B6 | 2E |
Decimal | 126 | 182 | 46 |
Binary | 1111110 | 10110110 | 101110 |
Octal | 176 | 266 | 56 |
Examples of css and html codes for elements with #7EB62E color. Also use rgb(126,182,46) instead hex code.
.myTextColor { color: #7EB62E; }
<p style="color:#7EB62E">This sample text font color is #7EB62E.</p>
This text font color is #7EB62E.
.myBgColor { background-color: #7EB62E; }
<div style="background-color:#7EB62E">Inner text</div>
This div background color is #7EB62E.
.myBorderColor { border: 1px solid #7EB62E; }
<div style="border:3px solid #7EB62E">Div</div>
This div border color is #7EB62E.
.myOpacity80 { color: #7EB62E; opacity: 0.8; }
<p style="color:#7EB62E;opacity:0.8;">80%</p>
Text with #7EB62E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EB62E;}
<p style="text-shadow: 3px 3px 1px #7EB62E">Text here.</p>
This text has shadow with #7EB62E color.
.textShadow {text-shadow: 3px 3px 1px #7EB62E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EB62E, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EB62E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EB62E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EB62E, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EB62E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EB62E; -webkit-box-shadow: 1px 1px 3px 2px #7EB62E; box-shadow: 1px 1px 3px 2px #7EB62E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EB62E; -webkit-box-shadow: 1px 1px 3px 2px #7EB62E; box-shadow:1px 1px 3px 2px #7EB62E;">
Div content here</div>
This text has color #7EB62E on black background.
This text has color #7EB62E on white background.
This text has black color on #7EB62E background.
This text has white color on #7EB62E background.