HEX: #7DCF78
RGB: (125,207,120)
#7DCF78 contains mainly green color. Web safe color of #7DCF78 is #66CC66 (or #6C6).
#7DCF78 color RGB value is (125,207,120).
RGB: (125,207,120) (49%,81%,47%)
R 125 of 255 = 49%
G 207 of 255 = 81%
B 120 of 255 = 47%
R + G + B ~ 59%. #7DCF78 is middle color (not dark and not light).
R + G + B =
125 + 207 + 120 = 452 (100%)
R 125 of 452 ~ 27.65%
G 207 of 452 ~ 45.8%
B 120 of 452 ~ 26.55%
#7DCF78 color CMYK value is (40,0,42,19).
CMYK: (40,0,42,19) C40M0Y42K19 (40%,0%,42%,19%) (0.40/0.00/0.42/0.19)
7D | CF | 78 | |
---|---|---|---|
RGB | 125 | 207 | 120 |
HSL | 117° | 47.54% | 64.12% |
HSB/HSV | 117° | 42.03% | 81.18% |
CMYK | 39.61% | 0.00% | 42.03% |
18.82% |
HEX | 7D | CF | 78 |
Decimal | 125 | 207 | 120 |
Binary | 1111101 | 11001111 | 1111000 |
Octal | 175 | 317 | 170 |
Examples of css and html codes for elements with #7DCF78 color. Also use rgb(125,207,120) instead hex code.
.myTextColor { color: #7DCF78; }
<p style="color:#7DCF78">This sample text font color is #7DCF78.</p>
This text font color is #7DCF78.
.myBgColor { background-color: #7DCF78; }
<div style="background-color:#7DCF78">Inner text</div>
This div background color is #7DCF78.
.myBorderColor { border: 1px solid #7DCF78; }
<div style="border:3px solid #7DCF78">Div</div>
This div border color is #7DCF78.
.myOpacity80 { color: #7DCF78; opacity: 0.8; }
<p style="color:#7DCF78;opacity:0.8;">80%</p>
Text with #7DCF78 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DCF78;}
<p style="text-shadow: 3px 3px 1px #7DCF78">Text here.</p>
This text has shadow with #7DCF78 color.
.textShadow {text-shadow: 3px 3px 1px #7DCF78, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DCF78, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DCF78 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DCF78, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DCF78, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DCF78 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DCF78; -webkit-box-shadow: 1px 1px 3px 2px #7DCF78; box-shadow: 1px 1px 3px 2px #7DCF78; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DCF78; -webkit-box-shadow: 1px 1px 3px 2px #7DCF78; box-shadow:1px 1px 3px 2px #7DCF78;">
Div content here</div>
This text has color #7DCF78 on black background.
This text has color #7DCF78 on white background.
This text has black color on #7DCF78 background.
This text has white color on #7DCF78 background.