HEX: #7DD44D
RGB: (125,212,77)
#7DD44D contains mainly green color. Web safe color of #7DD44D is #66CC33 (or #6C3).
#7DD44D color RGB value is (125,212,77).
RGB: (125,212,77) (49%,83%,30%)
R 125 of 255 = 49%
G 212 of 255 = 83%
B 77 of 255 = 30%
R + G + B ~ 54%. #7DD44D is middle color (not dark and not light).
R + G + B =
125 + 212 + 77 = 414 (100%)
R 125 of 414 ~ 30.19%
G 212 of 414 ~ 51.21%
B 77 of 414 ~ 18.6%
#7DD44D color CMYK value is (41,0,64,17).
CMYK: (41,0,64,17) C41M0Y64K17 (41%,0%,64%,17%) (0.41/0.00/0.64/0.17)
7D | D4 | 4D | |
---|---|---|---|
RGB | 125 | 212 | 77 |
HSL | 99° | 61.09% | 56.67% |
HSB/HSV | 99° | 63.68% | 83.14% |
CMYK | 41.04% | 0.00% | 63.68% |
16.86% |
HEX | 7D | D4 | 4D |
Decimal | 125 | 212 | 77 |
Binary | 1111101 | 11010100 | 1001101 |
Octal | 175 | 324 | 115 |
Examples of css and html codes for elements with #7DD44D color. Also use rgb(125,212,77) instead hex code.
.myTextColor { color: #7DD44D; }
<p style="color:#7DD44D">This sample text font color is #7DD44D.</p>
This text font color is #7DD44D.
.myBgColor { background-color: #7DD44D; }
<div style="background-color:#7DD44D">Inner text</div>
This div background color is #7DD44D.
.myBorderColor { border: 1px solid #7DD44D; }
<div style="border:3px solid #7DD44D">Div</div>
This div border color is #7DD44D.
.myOpacity80 { color: #7DD44D; opacity: 0.8; }
<p style="color:#7DD44D;opacity:0.8;">80%</p>
Text with #7DD44D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DD44D;}
<p style="text-shadow: 3px 3px 1px #7DD44D">Text here.</p>
This text has shadow with #7DD44D color.
.textShadow {text-shadow: 3px 3px 1px #7DD44D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DD44D, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DD44D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DD44D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DD44D, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DD44D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DD44D; -webkit-box-shadow: 1px 1px 3px 2px #7DD44D; box-shadow: 1px 1px 3px 2px #7DD44D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DD44D; -webkit-box-shadow: 1px 1px 3px 2px #7DD44D; box-shadow:1px 1px 3px 2px #7DD44D;">
Div content here</div>
This text has color #7DD44D on black background.
This text has color #7DD44D on white background.
This text has black color on #7DD44D background.
This text has white color on #7DD44D background.