HEX: #7DD05E
RGB: (125,208,94)
#7DD05E contains mainly green color. Web safe color of #7DD05E is #66CC66 (or #6C6).
#7DD05E color RGB value is (125,208,94).
RGB: (125,208,94) (49%,82%,37%)
R 125 of 255 = 49%
G 208 of 255 = 82%
B 94 of 255 = 37%
R + G + B ~ 56%. #7DD05E is middle color (not dark and not light).
R + G + B =
125 + 208 + 94 = 427 (100%)
R 125 of 427 ~ 29.27%
G 208 of 427 ~ 48.71%
B 94 of 427 ~ 22.01%
#7DD05E color CMYK value is (40,0,55,18).
CMYK: (40,0,55,18) C40M0Y55K18 (40%,0%,55%,18%) (0.40/0.00/0.55/0.18)
7D | D0 | 5E | |
---|---|---|---|
RGB | 125 | 208 | 94 |
HSL | 104° | 54.81% | 59.22% |
HSB/HSV | 104° | 54.81% | 81.57% |
CMYK | 39.90% | 0.00% | 54.81% |
18.43% |
HEX | 7D | D0 | 5E |
Decimal | 125 | 208 | 94 |
Binary | 1111101 | 11010000 | 1011110 |
Octal | 175 | 320 | 136 |
Examples of css and html codes for elements with #7DD05E color. Also use rgb(125,208,94) instead hex code.
.myTextColor { color: #7DD05E; }
<p style="color:#7DD05E">This sample text font color is #7DD05E.</p>
This text font color is #7DD05E.
.myBgColor { background-color: #7DD05E; }
<div style="background-color:#7DD05E">Inner text</div>
This div background color is #7DD05E.
.myBorderColor { border: 1px solid #7DD05E; }
<div style="border:3px solid #7DD05E">Div</div>
This div border color is #7DD05E.
.myOpacity80 { color: #7DD05E; opacity: 0.8; }
<p style="color:#7DD05E;opacity:0.8;">80%</p>
Text with #7DD05E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DD05E;}
<p style="text-shadow: 3px 3px 1px #7DD05E">Text here.</p>
This text has shadow with #7DD05E color.
.textShadow {text-shadow: 3px 3px 1px #7DD05E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DD05E, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DD05E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DD05E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DD05E, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DD05E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DD05E; -webkit-box-shadow: 1px 1px 3px 2px #7DD05E; box-shadow: 1px 1px 3px 2px #7DD05E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DD05E; -webkit-box-shadow: 1px 1px 3px 2px #7DD05E; box-shadow:1px 1px 3px 2px #7DD05E;">
Div content here</div>
This text has color #7DD05E on black background.
This text has color #7DD05E on white background.
This text has black color on #7DD05E background.
This text has white color on #7DD05E background.