HEX: #7DD45F
RGB: (125,212,95)
#7DD45F contains mainly green color. Web safe color of #7DD45F is #66CC66 (or #6C6).
#7DD45F color RGB value is (125,212,95).
RGB: (125,212,95) (49%,83%,37%)
R 125 of 255 = 49%
G 212 of 255 = 83%
B 95 of 255 = 37%
R + G + B ~ 56%. #7DD45F is middle color (not dark and not light).
R + G + B =
125 + 212 + 95 = 432 (100%)
R 125 of 432 ~ 28.94%
G 212 of 432 ~ 49.07%
B 95 of 432 ~ 21.99%
#7DD45F color CMYK value is (41,0,55,17).
CMYK: (41,0,55,17) C41M0Y55K17 (41%,0%,55%,17%) (0.41/0.00/0.55/0.17)
7D | D4 | 5F | |
---|---|---|---|
RGB | 125 | 212 | 95 |
HSL | 105° | 57.64% | 60.20% |
HSB/HSV | 105° | 55.19% | 83.14% |
CMYK | 41.04% | 0.00% | 55.19% |
16.86% |
HEX | 7D | D4 | 5F |
Decimal | 125 | 212 | 95 |
Binary | 1111101 | 11010100 | 1011111 |
Octal | 175 | 324 | 137 |
Examples of css and html codes for elements with #7DD45F color. Also use rgb(125,212,95) instead hex code.
.myTextColor { color: #7DD45F; }
<p style="color:#7DD45F">This sample text font color is #7DD45F.</p>
This text font color is #7DD45F.
.myBgColor { background-color: #7DD45F; }
<div style="background-color:#7DD45F">Inner text</div>
This div background color is #7DD45F.
.myBorderColor { border: 1px solid #7DD45F; }
<div style="border:3px solid #7DD45F">Div</div>
This div border color is #7DD45F.
.myOpacity80 { color: #7DD45F; opacity: 0.8; }
<p style="color:#7DD45F;opacity:0.8;">80%</p>
Text with #7DD45F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DD45F;}
<p style="text-shadow: 3px 3px 1px #7DD45F">Text here.</p>
This text has shadow with #7DD45F color.
.textShadow {text-shadow: 3px 3px 1px #7DD45F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DD45F, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DD45F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DD45F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DD45F, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DD45F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DD45F; -webkit-box-shadow: 1px 1px 3px 2px #7DD45F; box-shadow: 1px 1px 3px 2px #7DD45F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DD45F; -webkit-box-shadow: 1px 1px 3px 2px #7DD45F; box-shadow:1px 1px 3px 2px #7DD45F;">
Div content here</div>
This text has color #7DD45F on black background.
This text has color #7DD45F on white background.
This text has black color on #7DD45F background.
This text has white color on #7DD45F background.