HEX: #7DC443
RGB: (125,196,67)
#7DC443 contains mainly green color. Web safe color of #7DC443 is #66CC33 (or #6C3).
#7DC443 color RGB value is (125,196,67).
RGB: (125,196,67) (49%,77%,26%)
R 125 of 255 = 49%
G 196 of 255 = 77%
B 67 of 255 = 26%
R + G + B ~ 51%. #7DC443 is middle color (not dark and not light).
R + G + B =
125 + 196 + 67 = 388 (100%)
R 125 of 388 ~ 32.22%
G 196 of 388 ~ 50.52%
B 67 of 388 ~ 17.27%
#7DC443 color CMYK value is (36,0,66,23).
CMYK: (36,0,66,23) C36M0Y66K23 (36%,0%,66%,23%) (0.36/0.00/0.66/0.23)
7D | C4 | 43 | |
---|---|---|---|
RGB | 125 | 196 | 67 |
HSL | 93° | 52.23% | 51.57% |
HSB/HSV | 93° | 65.82% | 76.86% |
CMYK | 36.22% | 0.00% | 65.82% |
23.14% |
HEX | 7D | C4 | 43 |
Decimal | 125 | 196 | 67 |
Binary | 1111101 | 11000100 | 1000011 |
Octal | 175 | 304 | 103 |
Examples of css and html codes for elements with #7DC443 color. Also use rgb(125,196,67) instead hex code.
.myTextColor { color: #7DC443; }
<p style="color:#7DC443">This sample text font color is #7DC443.</p>
This text font color is #7DC443.
.myBgColor { background-color: #7DC443; }
<div style="background-color:#7DC443">Inner text</div>
This div background color is #7DC443.
.myBorderColor { border: 1px solid #7DC443; }
<div style="border:3px solid #7DC443">Div</div>
This div border color is #7DC443.
.myOpacity80 { color: #7DC443; opacity: 0.8; }
<p style="color:#7DC443;opacity:0.8;">80%</p>
Text with #7DC443 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DC443;}
<p style="text-shadow: 3px 3px 1px #7DC443">Text here.</p>
This text has shadow with #7DC443 color.
.textShadow {text-shadow: 3px 3px 1px #7DC443, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DC443, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DC443 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DC443, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DC443, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DC443 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DC443; -webkit-box-shadow: 1px 1px 3px 2px #7DC443; box-shadow: 1px 1px 3px 2px #7DC443; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DC443; -webkit-box-shadow: 1px 1px 3px 2px #7DC443; box-shadow:1px 1px 3px 2px #7DC443;">
Div content here</div>
This text has color #7DC443 on black background.
This text has color #7DC443 on white background.
This text has black color on #7DC443 background.
This text has white color on #7DC443 background.