HEX: #76D961
RGB: (118,217,97)
#76D961 contains mainly green color. Web safe color of #76D961 is #66CC66 (or #6C6).
#76D961 color RGB value is (118,217,97).
RGB: (118,217,97) (46%,85%,38%)
R 118 of 255 = 46%
G 217 of 255 = 85%
B 97 of 255 = 38%
R + G + B ~ 56%. #76D961 is middle color (not dark and not light).
R + G + B =
118 + 217 + 97 = 432 (100%)
R 118 of 432 ~ 27.31%
G 217 of 432 ~ 50.23%
B 97 of 432 ~ 22.45%
#76D961 color CMYK value is (46,0,55,15).
CMYK: (46,0,55,15) C46M0Y55K15 (46%,0%,55%,15%) (0.46/0.00/0.55/0.15)
76 | D9 | 61 | |
---|---|---|---|
RGB | 118 | 217 | 97 |
HSL | 110° | 61.22% | 61.57% |
HSB/HSV | 110° | 55.30% | 85.10% |
CMYK | 45.62% | 0.00% | 55.30% |
14.90% |
HEX | 76 | D9 | 61 |
Decimal | 118 | 217 | 97 |
Binary | 1110110 | 11011001 | 1100001 |
Octal | 166 | 331 | 141 |
Examples of css and html codes for elements with #76D961 color. Also use rgb(118,217,97) instead hex code.
.myTextColor { color: #76D961; }
<p style="color:#76D961">This sample text font color is #76D961.</p>
This text font color is #76D961.
.myBgColor { background-color: #76D961; }
<div style="background-color:#76D961">Inner text</div>
This div background color is #76D961.
.myBorderColor { border: 1px solid #76D961; }
<div style="border:3px solid #76D961">Div</div>
This div border color is #76D961.
.myOpacity80 { color: #76D961; opacity: 0.8; }
<p style="color:#76D961;opacity:0.8;">80%</p>
Text with #76D961 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76D961;}
<p style="text-shadow: 3px 3px 1px #76D961">Text here.</p>
This text has shadow with #76D961 color.
.textShadow {text-shadow: 3px 3px 1px #76D961, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76D961, 5px 5px 20px red">Text here.</p>
This text has shadow with #76D961 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76D961, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76D961, Direction=45, Strength=4)">Text</p>
This text has shadow with #76D961 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76D961; -webkit-box-shadow: 1px 1px 3px 2px #76D961; box-shadow: 1px 1px 3px 2px #76D961; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76D961; -webkit-box-shadow: 1px 1px 3px 2px #76D961; box-shadow:1px 1px 3px 2px #76D961;">
Div content here</div>
This text has color #76D961 on black background.
This text has color #76D961 on white background.
This text has black color on #76D961 background.
This text has white color on #76D961 background.