HEX: #7DC18C
RGB: (125,193,140)
#7DC18C contains mainly green and blue colors. Web safe color of #7DC18C is #66CC99 (or #6C9).
#7DC18C color RGB value is (125,193,140).
RGB: (125,193,140) (49%,76%,55%)
R 125 of 255 = 49%
G 193 of 255 = 76%
B 140 of 255 = 55%
R + G + B ~ 60%. #7DC18C is middle color (not dark and not light).
R + G + B =
125 + 193 + 140 = 458 (100%)
R 125 of 458 ~ 27.29%
G 193 of 458 ~ 42.14%
B 140 of 458 ~ 30.57%
#7DC18C color CMYK value is (35,0,27,24).
CMYK: (35,0,27,24) C35M0Y27K24 (35%,0%,27%,24%) (0.35/0.00/0.27/0.24)
7D | C1 | 8C | |
---|---|---|---|
RGB | 125 | 193 | 140 |
HSL | 133° | 35.42% | 62.35% |
HSB/HSV | 133° | 35.23% | 75.69% |
CMYK | 35.23% | 0.00% | 27.46% |
24.31% |
HEX | 7D | C1 | 8C |
Decimal | 125 | 193 | 140 |
Binary | 1111101 | 11000001 | 10001100 |
Octal | 175 | 301 | 214 |
Examples of css and html codes for elements with #7DC18C color. Also use rgb(125,193,140) instead hex code.
.myTextColor { color: #7DC18C; }
<p style="color:#7DC18C">This sample text font color is #7DC18C.</p>
This text font color is #7DC18C.
.myBgColor { background-color: #7DC18C; }
<div style="background-color:#7DC18C">Inner text</div>
This div background color is #7DC18C.
.myBorderColor { border: 1px solid #7DC18C; }
<div style="border:3px solid #7DC18C">Div</div>
This div border color is #7DC18C.
.myOpacity80 { color: #7DC18C; opacity: 0.8; }
<p style="color:#7DC18C;opacity:0.8;">80%</p>
Text with #7DC18C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DC18C;}
<p style="text-shadow: 3px 3px 1px #7DC18C">Text here.</p>
This text has shadow with #7DC18C color.
.textShadow {text-shadow: 3px 3px 1px #7DC18C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DC18C, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DC18C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DC18C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DC18C, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DC18C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DC18C; -webkit-box-shadow: 1px 1px 3px 2px #7DC18C; box-shadow: 1px 1px 3px 2px #7DC18C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DC18C; -webkit-box-shadow: 1px 1px 3px 2px #7DC18C; box-shadow:1px 1px 3px 2px #7DC18C;">
Div content here</div>
This text has color #7DC18C on black background.
This text has color #7DC18C on white background.
This text has black color on #7DC18C background.
This text has white color on #7DC18C background.