HEX: #6FD97F
RGB: (111,217,127)
#6FD97F contains mainly green color. Web safe color of #6FD97F is #66CC66 (or #6C6).
#6FD97F color RGB value is (111,217,127).
RGB: (111,217,127) (44%,85%,50%)
R 111 of 255 = 44%
G 217 of 255 = 85%
B 127 of 255 = 50%
R + G + B ~ 60%. #6FD97F is middle color (not dark and not light).
R + G + B =
111 + 217 + 127 = 455 (100%)
R 111 of 455 ~ 24.4%
G 217 of 455 ~ 47.69%
B 127 of 455 ~ 27.91%
#6FD97F color CMYK value is (49,0,41,15).
CMYK: (49,0,41,15) C49M0Y41K15 (49%,0%,41%,15%) (0.49/0.00/0.41/0.15)
6F | D9 | 7F | |
---|---|---|---|
RGB | 111 | 217 | 127 |
HSL | 129° | 58.24% | 64.31% |
HSB/HSV | 129° | 48.85% | 85.10% |
CMYK | 48.85% | 0.00% | 41.47% |
14.90% |
HEX | 6F | D9 | 7F |
Decimal | 111 | 217 | 127 |
Binary | 1101111 | 11011001 | 1111111 |
Octal | 157 | 331 | 177 |
Examples of css and html codes for elements with #6FD97F color. Also use rgb(111,217,127) instead hex code.
.myTextColor { color: #6FD97F; }
<p style="color:#6FD97F">This sample text font color is #6FD97F.</p>
This text font color is #6FD97F.
.myBgColor { background-color: #6FD97F; }
<div style="background-color:#6FD97F">Inner text</div>
This div background color is #6FD97F.
.myBorderColor { border: 1px solid #6FD97F; }
<div style="border:3px solid #6FD97F">Div</div>
This div border color is #6FD97F.
.myOpacity80 { color: #6FD97F; opacity: 0.8; }
<p style="color:#6FD97F;opacity:0.8;">80%</p>
Text with #6FD97F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6FD97F;}
<p style="text-shadow: 3px 3px 1px #6FD97F">Text here.</p>
This text has shadow with #6FD97F color.
.textShadow {text-shadow: 3px 3px 1px #6FD97F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6FD97F, 5px 5px 20px red">Text here.</p>
This text has shadow with #6FD97F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6FD97F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6FD97F, Direction=45, Strength=4)">Text</p>
This text has shadow with #6FD97F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6FD97F; -webkit-box-shadow: 1px 1px 3px 2px #6FD97F; box-shadow: 1px 1px 3px 2px #6FD97F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6FD97F; -webkit-box-shadow: 1px 1px 3px 2px #6FD97F; box-shadow:1px 1px 3px 2px #6FD97F;">
Div content here</div>
This text has color #6FD97F on black background.
This text has color #6FD97F on white background.
This text has black color on #6FD97F background.
This text has white color on #6FD97F background.