HEX: #7ED376
RGB: (126,211,118)
#7ED376 contains mainly green color. Web safe color of #7ED376 is #66CC66 (or #6C6).
#7ED376 color RGB value is (126,211,118).
RGB: (126,211,118) (49%,83%,46%)
R 126 of 255 = 49%
G 211 of 255 = 83%
B 118 of 255 = 46%
R + G + B ~ 59%. #7ED376 is middle color (not dark and not light).
R + G + B =
126 + 211 + 118 = 455 (100%)
R 126 of 455 ~ 27.69%
G 211 of 455 ~ 46.37%
B 118 of 455 ~ 25.93%
#7ED376 color CMYK value is (40,0,44,17).
CMYK: (40,0,44,17) C40M0Y44K17 (40%,0%,44%,17%) (0.40/0.00/0.44/0.17)
7E | D3 | 76 | |
---|---|---|---|
RGB | 126 | 211 | 118 |
HSL | 115° | 51.38% | 64.51% |
HSB/HSV | 115° | 44.08% | 82.75% |
CMYK | 40.28% | 0.00% | 44.08% |
17.25% |
HEX | 7E | D3 | 76 |
Decimal | 126 | 211 | 118 |
Binary | 1111110 | 11010011 | 1110110 |
Octal | 176 | 323 | 166 |
Examples of css and html codes for elements with #7ED376 color. Also use rgb(126,211,118) instead hex code.
.myTextColor { color: #7ED376; }
<p style="color:#7ED376">This sample text font color is #7ED376.</p>
This text font color is #7ED376.
.myBgColor { background-color: #7ED376; }
<div style="background-color:#7ED376">Inner text</div>
This div background color is #7ED376.
.myBorderColor { border: 1px solid #7ED376; }
<div style="border:3px solid #7ED376">Div</div>
This div border color is #7ED376.
.myOpacity80 { color: #7ED376; opacity: 0.8; }
<p style="color:#7ED376;opacity:0.8;">80%</p>
Text with #7ED376 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7ED376;}
<p style="text-shadow: 3px 3px 1px #7ED376">Text here.</p>
This text has shadow with #7ED376 color.
.textShadow {text-shadow: 3px 3px 1px #7ED376, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7ED376, 5px 5px 20px red">Text here.</p>
This text has shadow with #7ED376 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7ED376, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7ED376, Direction=45, Strength=4)">Text</p>
This text has shadow with #7ED376 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7ED376; -webkit-box-shadow: 1px 1px 3px 2px #7ED376; box-shadow: 1px 1px 3px 2px #7ED376; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7ED376; -webkit-box-shadow: 1px 1px 3px 2px #7ED376; box-shadow:1px 1px 3px 2px #7ED376;">
Div content here</div>
This text has color #7ED376 on black background.
This text has color #7ED376 on white background.
This text has black color on #7ED376 background.
This text has white color on #7ED376 background.