HEX: #7DE88F
RGB: (125,232,143)
#7DE88F contains mainly green color. Web safe color of #7DE88F is #66FF99 (or #6F9).
#7DE88F color RGB value is (125,232,143).
RGB: (125,232,143) (49%,91%,56%)
R 125 of 255 = 49%
G 232 of 255 = 91%
B 143 of 255 = 56%
R + G + B ~ 65%. #7DE88F is quite light color.
R + G + B =
125 + 232 + 143 = 500 (100%)
R 125 of 500 ~ 25%
G 232 of 500 ~ 46.4%
B 143 of 500 ~ 28.6%
#7DE88F color CMYK value is (46,0,38,9).
CMYK: (46,0,38,9) C46M0Y38K9 (46%,0%,38%,9%) (0.46/0.00/0.38/0.09)
7D | E8 | 8F | |
---|---|---|---|
RGB | 125 | 232 | 143 |
HSL | 130° | 69.93% | 70.00% |
HSB/HSV | 130° | 46.12% | 90.98% |
CMYK | 46.12% | 0.00% | 38.36% |
9.02% |
HEX | 7D | E8 | 8F |
Decimal | 125 | 232 | 143 |
Binary | 1111101 | 11101000 | 10001111 |
Octal | 175 | 350 | 217 |
Examples of css and html codes for elements with #7DE88F color. Also use rgb(125,232,143) instead hex code.
.myTextColor { color: #7DE88F; }
<p style="color:#7DE88F">This sample text font color is #7DE88F.</p>
This text font color is #7DE88F.
.myBgColor { background-color: #7DE88F; }
<div style="background-color:#7DE88F">Inner text</div>
This div background color is #7DE88F.
.myBorderColor { border: 1px solid #7DE88F; }
<div style="border:3px solid #7DE88F">Div</div>
This div border color is #7DE88F.
.myOpacity80 { color: #7DE88F; opacity: 0.8; }
<p style="color:#7DE88F;opacity:0.8;">80%</p>
Text with #7DE88F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DE88F;}
<p style="text-shadow: 3px 3px 1px #7DE88F">Text here.</p>
This text has shadow with #7DE88F color.
.textShadow {text-shadow: 3px 3px 1px #7DE88F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DE88F, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DE88F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DE88F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DE88F, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DE88F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DE88F; -webkit-box-shadow: 1px 1px 3px 2px #7DE88F; box-shadow: 1px 1px 3px 2px #7DE88F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DE88F; -webkit-box-shadow: 1px 1px 3px 2px #7DE88F; box-shadow:1px 1px 3px 2px #7DE88F;">
Div content here</div>
This text has color #7DE88F on black background.
This text has color #7DE88F on white background.
This text has black color on #7DE88F background.
This text has white color on #7DE88F background.