HEX: #7EC953
RGB: (126,201,83)
#7EC953 contains mainly green color. Web safe color of #7EC953 is #66CC66 (or #6C6).
#7EC953 color RGB value is (126,201,83).
RGB: (126,201,83) (49%,79%,33%)
R 126 of 255 = 49%
G 201 of 255 = 79%
B 83 of 255 = 33%
R + G + B ~ 54%. #7EC953 is middle color (not dark and not light).
R + G + B =
126 + 201 + 83 = 410 (100%)
R 126 of 410 ~ 30.73%
G 201 of 410 ~ 49.02%
B 83 of 410 ~ 20.24%
#7EC953 color CMYK value is (37,0,59,21).
CMYK: (37,0,59,21) C37M0Y59K21 (37%,0%,59%,21%) (0.37/0.00/0.59/0.21)
7E | C9 | 53 | |
---|---|---|---|
RGB | 126 | 201 | 83 |
HSL | 98° | 52.21% | 55.69% |
HSB/HSV | 98° | 58.71% | 78.82% |
CMYK | 37.31% | 0.00% | 58.71% |
21.18% |
HEX | 7E | C9 | 53 |
Decimal | 126 | 201 | 83 |
Binary | 1111110 | 11001001 | 1010011 |
Octal | 176 | 311 | 123 |
Examples of css and html codes for elements with #7EC953 color. Also use rgb(126,201,83) instead hex code.
.myTextColor { color: #7EC953; }
<p style="color:#7EC953">This sample text font color is #7EC953.</p>
This text font color is #7EC953.
.myBgColor { background-color: #7EC953; }
<div style="background-color:#7EC953">Inner text</div>
This div background color is #7EC953.
.myBorderColor { border: 1px solid #7EC953; }
<div style="border:3px solid #7EC953">Div</div>
This div border color is #7EC953.
.myOpacity80 { color: #7EC953; opacity: 0.8; }
<p style="color:#7EC953;opacity:0.8;">80%</p>
Text with #7EC953 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7EC953;}
<p style="text-shadow: 3px 3px 1px #7EC953">Text here.</p>
This text has shadow with #7EC953 color.
.textShadow {text-shadow: 3px 3px 1px #7EC953, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7EC953, 5px 5px 20px red">Text here.</p>
This text has shadow with #7EC953 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7EC953, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7EC953, Direction=45, Strength=4)">Text</p>
This text has shadow with #7EC953 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7EC953; -webkit-box-shadow: 1px 1px 3px 2px #7EC953; box-shadow: 1px 1px 3px 2px #7EC953; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7EC953; -webkit-box-shadow: 1px 1px 3px 2px #7EC953; box-shadow:1px 1px 3px 2px #7EC953;">
Div content here</div>
This text has color #7EC953 on black background.
This text has color #7EC953 on white background.
This text has black color on #7EC953 background.
This text has white color on #7EC953 background.