HEX: #7FC763
RGB: (127,199,99)
#7FC763 contains mainly green color. Web safe color of #7FC763 is #66CC66 (or #6C6).
#7FC763 color RGB value is (127,199,99).
RGB: (127,199,99) (50%,78%,39%)
R 127 of 255 = 50%
G 199 of 255 = 78%
B 99 of 255 = 39%
R + G + B ~ 56%. #7FC763 is middle color (not dark and not light).
R + G + B =
127 + 199 + 99 = 425 (100%)
R 127 of 425 ~ 29.88%
G 199 of 425 ~ 46.82%
B 99 of 425 ~ 23.29%
#7FC763 color CMYK value is (36,0,50,22).
CMYK: (36,0,50,22) C36M0Y50K22 (36%,0%,50%,22%) (0.36/0.00/0.50/0.22)
7F | C7 | 63 | |
---|---|---|---|
RGB | 127 | 199 | 99 |
HSL | 103° | 47.17% | 58.43% |
HSB/HSV | 103° | 50.25% | 78.04% |
CMYK | 36.18% | 0.00% | 50.25% |
21.96% |
HEX | 7F | C7 | 63 |
Decimal | 127 | 199 | 99 |
Binary | 1111111 | 11000111 | 1100011 |
Octal | 177 | 307 | 143 |
Examples of css and html codes for elements with #7FC763 color. Also use rgb(127,199,99) instead hex code.
.myTextColor { color: #7FC763; }
<p style="color:#7FC763">This sample text font color is #7FC763.</p>
This text font color is #7FC763.
.myBgColor { background-color: #7FC763; }
<div style="background-color:#7FC763">Inner text</div>
This div background color is #7FC763.
.myBorderColor { border: 1px solid #7FC763; }
<div style="border:3px solid #7FC763">Div</div>
This div border color is #7FC763.
.myOpacity80 { color: #7FC763; opacity: 0.8; }
<p style="color:#7FC763;opacity:0.8;">80%</p>
Text with #7FC763 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7FC763;}
<p style="text-shadow: 3px 3px 1px #7FC763">Text here.</p>
This text has shadow with #7FC763 color.
.textShadow {text-shadow: 3px 3px 1px #7FC763, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7FC763, 5px 5px 20px red">Text here.</p>
This text has shadow with #7FC763 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7FC763, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7FC763, Direction=45, Strength=4)">Text</p>
This text has shadow with #7FC763 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7FC763; -webkit-box-shadow: 1px 1px 3px 2px #7FC763; box-shadow: 1px 1px 3px 2px #7FC763; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7FC763; -webkit-box-shadow: 1px 1px 3px 2px #7FC763; box-shadow:1px 1px 3px 2px #7FC763;">
Div content here</div>
This text has color #7FC763 on black background.
This text has color #7FC763 on white background.
This text has black color on #7FC763 background.
This text has white color on #7FC763 background.