HEX: #7EC09E
RGB: (126,192,158)
#7EC09E contains mainly green and blue colors. Web safe color of #7EC09E is #66CC99 (or #6C9).
#7EC09E color RGB value is (126,192,158).
RGB: (126,192,158) (49%,75%,62%)
R 126 of 255 = 49%
G 192 of 255 = 75%
B 158 of 255 = 62%
R + G + B ~ 62%. #7EC09E is quite light color.
R + G + B =
126 + 192 + 158 = 476 (100%)
R 126 of 476 ~ 26.47%
G 192 of 476 ~ 40.34%
B 158 of 476 ~ 33.19%
#7EC09E color CMYK value is (34,0,18,25).
CMYK: (34,0,18,25) C34M0Y18K25 (34%,0%,18%,25%) (0.34/0.00/0.18/0.25)
7E | C0 | 9E | |
---|---|---|---|
RGB | 126 | 192 | 158 |
HSL | 149° | 34.38% | 62.35% |
HSB/HSV | 149° | 34.38% | 75.29% |
CMYK | 34.38% | 0.00% | 17.71% |
24.71% |
HEX | 7E | C0 | 9E |
Decimal | 126 | 192 | 158 |
Binary | 1111110 | 11000000 | 10011110 |
Octal | 176 | 300 | 236 |
Examples of css and html codes for elements with #7EC09E color. Also use rgb(126,192,158) instead hex code.
.myTextColor { color: #7EC09E; }
<p style="color:#7EC09E">This sample text font color is #7EC09E.</p>
This text font color is #7EC09E.
.myBgColor { background-color: #7EC09E; }
<div style="background-color:#7EC09E">Inner text</div>
This div background color is #7EC09E.
.myBorderColor { border: 1px solid #7EC09E; }
<div style="border:3px solid #7EC09E">Div</div>
This div border color is #7EC09E.
.myOpacity80 { color: #7EC09E; opacity: 0.8; }
<p style="color:#7EC09E;opacity:0.8;">80%</p>
Text with #7EC09E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EC09E;}
<p style="text-shadow: 3px 3px 1px #7EC09E">Text here.</p>
This text has shadow with #7EC09E color.
.textShadow {text-shadow: 3px 3px 1px #7EC09E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EC09E, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EC09E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EC09E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EC09E, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EC09E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EC09E; -webkit-box-shadow: 1px 1px 3px 2px #7EC09E; box-shadow: 1px 1px 3px 2px #7EC09E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EC09E; -webkit-box-shadow: 1px 1px 3px 2px #7EC09E; box-shadow:1px 1px 3px 2px #7EC09E;">
Div content here</div>
This text has color #7EC09E on black background.
This text has color #7EC09E on white background.
This text has black color on #7EC09E background.
This text has white color on #7EC09E background.