HEX: #76D861
RGB: (118,216,97)
#76D861 contains mainly green color. Web safe color of #76D861 is #66CC66 (or #6C6).
#76D861 color RGB value is (118,216,97).
RGB: (118,216,97) (46%,85%,38%)
R 118 of 255 = 46%
G 216 of 255 = 85%
B 97 of 255 = 38%
R + G + B ~ 56%. #76D861 is middle color (not dark and not light).
R + G + B =
118 + 216 + 97 = 431 (100%)
R 118 of 431 ~ 27.38%
G 216 of 431 ~ 50.12%
B 97 of 431 ~ 22.51%
#76D861 color CMYK value is (45,0,55,15).
CMYK: (45,0,55,15) C45M0Y55K15 (45%,0%,55%,15%) (0.45/0.00/0.55/0.15)
76 | D8 | 61 | |
---|---|---|---|
RGB | 118 | 216 | 97 |
HSL | 109° | 60.41% | 61.37% |
HSB/HSV | 109° | 55.09% | 84.71% |
CMYK | 45.37% | 0.00% | 55.09% |
15.29% |
HEX | 76 | D8 | 61 |
Decimal | 118 | 216 | 97 |
Binary | 1110110 | 11011000 | 1100001 |
Octal | 166 | 330 | 141 |
Examples of css and html codes for elements with #76D861 color. Also use rgb(118,216,97) instead hex code.
.myTextColor { color: #76D861; }
<p style="color:#76D861">This sample text font color is #76D861.</p>
This text font color is #76D861.
.myBgColor { background-color: #76D861; }
<div style="background-color:#76D861">Inner text</div>
This div background color is #76D861.
.myBorderColor { border: 1px solid #76D861; }
<div style="border:3px solid #76D861">Div</div>
This div border color is #76D861.
.myOpacity80 { color: #76D861; opacity: 0.8; }
<p style="color:#76D861;opacity:0.8;">80%</p>
Text with #76D861 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76D861;}
<p style="text-shadow: 3px 3px 1px #76D861">Text here.</p>
This text has shadow with #76D861 color.
.textShadow {text-shadow: 3px 3px 1px #76D861, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76D861, 5px 5px 20px red">Text here.</p>
This text has shadow with #76D861 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76D861, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76D861, Direction=45, Strength=4)">Text</p>
This text has shadow with #76D861 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76D861; -webkit-box-shadow: 1px 1px 3px 2px #76D861; box-shadow: 1px 1px 3px 2px #76D861; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76D861; -webkit-box-shadow: 1px 1px 3px 2px #76D861; box-shadow:1px 1px 3px 2px #76D861;">
Div content here</div>
This text has color #76D861 on black background.
This text has color #76D861 on white background.
This text has black color on #76D861 background.
This text has white color on #76D861 background.