HEX: #7EC68A
RGB: (126,198,138)
#7EC68A contains mainly green color. Web safe color of #7EC68A is #66CC99 (or #6C9).
#7EC68A color RGB value is (126,198,138).
RGB: (126,198,138) (49%,78%,54%)
R 126 of 255 = 49%
G 198 of 255 = 78%
B 138 of 255 = 54%
R + G + B ~ 60%. #7EC68A is middle color (not dark and not light).
R + G + B =
126 + 198 + 138 = 462 (100%)
R 126 of 462 ~ 27.27%
G 198 of 462 ~ 42.86%
B 138 of 462 ~ 29.87%
#7EC68A color CMYK value is (36,0,30,22).
CMYK: (36,0,30,22) C36M0Y30K22 (36%,0%,30%,22%) (0.36/0.00/0.30/0.22)
7E | C6 | 8A | |
---|---|---|---|
RGB | 126 | 198 | 138 |
HSL | 130° | 38.71% | 63.53% |
HSB/HSV | 130° | 36.36% | 77.65% |
CMYK | 36.36% | 0.00% | 30.30% |
22.35% |
HEX | 7E | C6 | 8A |
Decimal | 126 | 198 | 138 |
Binary | 1111110 | 11000110 | 10001010 |
Octal | 176 | 306 | 212 |
Examples of css and html codes for elements with #7EC68A color. Also use rgb(126,198,138) instead hex code.
.myTextColor { color: #7EC68A; }
<p style="color:#7EC68A">This sample text font color is #7EC68A.</p>
This text font color is #7EC68A.
.myBgColor { background-color: #7EC68A; }
<div style="background-color:#7EC68A">Inner text</div>
This div background color is #7EC68A.
.myBorderColor { border: 1px solid #7EC68A; }
<div style="border:3px solid #7EC68A">Div</div>
This div border color is #7EC68A.
.myOpacity80 { color: #7EC68A; opacity: 0.8; }
<p style="color:#7EC68A;opacity:0.8;">80%</p>
Text with #7EC68A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EC68A;}
<p style="text-shadow: 3px 3px 1px #7EC68A">Text here.</p>
This text has shadow with #7EC68A color.
.textShadow {text-shadow: 3px 3px 1px #7EC68A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EC68A, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EC68A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EC68A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EC68A, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EC68A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EC68A; -webkit-box-shadow: 1px 1px 3px 2px #7EC68A; box-shadow: 1px 1px 3px 2px #7EC68A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EC68A; -webkit-box-shadow: 1px 1px 3px 2px #7EC68A; box-shadow:1px 1px 3px 2px #7EC68A;">
Div content here</div>
This text has color #7EC68A on black background.
This text has color #7EC68A on white background.
This text has black color on #7EC68A background.
This text has white color on #7EC68A background.