HEX: #7DE424
RGB: (125,228,36)
#7DE424 contains mainly green color. Web safe color of #7DE424 is #66CC33 (or #6C3).
#7DE424 color RGB value is (125,228,36).
RGB: (125,228,36) (49%,89%,14%)
R 125 of 255 = 49%
G 228 of 255 = 89%
B 36 of 255 = 14%
R + G + B ~ 51%. #7DE424 is middle color (not dark and not light).
R + G + B =
125 + 228 + 36 = 389 (100%)
R 125 of 389 ~ 32.13%
G 228 of 389 ~ 58.61%
B 36 of 389 ~ 9.25%
#7DE424 color CMYK value is (45,0,84,11).
CMYK: (45,0,84,11) C45M0Y84K11 (45%,0%,84%,11%) (0.45/0.00/0.84/0.11)
7D | E4 | 24 | |
---|---|---|---|
RGB | 125 | 228 | 36 |
HSL | 92° | 78.05% | 51.76% |
HSB/HSV | 92° | 84.21% | 89.41% |
CMYK | 45.18% | 0.00% | 84.21% |
10.59% |
HEX | 7D | E4 | 24 |
Decimal | 125 | 228 | 36 |
Binary | 1111101 | 11100100 | 100100 |
Octal | 175 | 344 | 44 |
Examples of css and html codes for elements with #7DE424 color. Also use rgb(125,228,36) instead hex code.
.myTextColor { color: #7DE424; }
<p style="color:#7DE424">This sample text font color is #7DE424.</p>
This text font color is #7DE424.
.myBgColor { background-color: #7DE424; }
<div style="background-color:#7DE424">Inner text</div>
This div background color is #7DE424.
.myBorderColor { border: 1px solid #7DE424; }
<div style="border:3px solid #7DE424">Div</div>
This div border color is #7DE424.
.myOpacity80 { color: #7DE424; opacity: 0.8; }
<p style="color:#7DE424;opacity:0.8;">80%</p>
Text with #7DE424 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DE424;}
<p style="text-shadow: 3px 3px 1px #7DE424">Text here.</p>
This text has shadow with #7DE424 color.
.textShadow {text-shadow: 3px 3px 1px #7DE424, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DE424, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DE424 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DE424, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DE424, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DE424 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DE424; -webkit-box-shadow: 1px 1px 3px 2px #7DE424; box-shadow: 1px 1px 3px 2px #7DE424; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DE424; -webkit-box-shadow: 1px 1px 3px 2px #7DE424; box-shadow:1px 1px 3px 2px #7DE424;">
Div content here</div>
This text has color #7DE424 on black background.
This text has color #7DE424 on white background.
This text has black color on #7DE424 background.
This text has white color on #7DE424 background.