HEX: #76F662
RGB: (118,246,98)
#76F662 contains mainly green color. Web safe color of #76F662 is #66FF66 (or #6F6).
#76F662 color RGB value is (118,246,98).
RGB: (118,246,98) (46%,96%,38%)
R 118 of 255 = 46%
G 246 of 255 = 96%
B 98 of 255 = 38%
R + G + B ~ 60%. #76F662 is middle color (not dark and not light).
R + G + B =
118 + 246 + 98 = 462 (100%)
R 118 of 462 ~ 25.54%
G 246 of 462 ~ 53.25%
B 98 of 462 ~ 21.21%
#76F662 color CMYK value is (52,0,60,4).
CMYK: (52,0,60,4) C52M0Y60K4 (52%,0%,60%,4%) (0.52/0.00/0.60/0.04)
76 | F6 | 62 | |
---|---|---|---|
RGB | 118 | 246 | 98 |
HSL | 112° | 89.16% | 67.45% |
HSB/HSV | 112° | 60.16% | 96.47% |
CMYK | 52.03% | 0.00% | 60.16% |
3.53% |
HEX | 76 | F6 | 62 |
Decimal | 118 | 246 | 98 |
Binary | 1110110 | 11110110 | 1100010 |
Octal | 166 | 366 | 142 |
Examples of css and html codes for elements with #76F662 color. Also use rgb(118,246,98) instead hex code.
.myTextColor { color: #76F662; }
<p style="color:#76F662">This sample text font color is #76F662.</p>
This text font color is #76F662.
.myBgColor { background-color: #76F662; }
<div style="background-color:#76F662">Inner text</div>
This div background color is #76F662.
.myBorderColor { border: 1px solid #76F662; }
<div style="border:3px solid #76F662">Div</div>
This div border color is #76F662.
.myOpacity80 { color: #76F662; opacity: 0.8; }
<p style="color:#76F662;opacity:0.8;">80%</p>
Text with #76F662 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76F662;}
<p style="text-shadow: 3px 3px 1px #76F662">Text here.</p>
This text has shadow with #76F662 color.
.textShadow {text-shadow: 3px 3px 1px #76F662, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76F662, 5px 5px 20px red">Text here.</p>
This text has shadow with #76F662 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76F662, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76F662, Direction=45, Strength=4)">Text</p>
This text has shadow with #76F662 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76F662; -webkit-box-shadow: 1px 1px 3px 2px #76F662; box-shadow: 1px 1px 3px 2px #76F662; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76F662; -webkit-box-shadow: 1px 1px 3px 2px #76F662; box-shadow:1px 1px 3px 2px #76F662;">
Div content here</div>
This text has color #76F662 on black background.
This text has color #76F662 on white background.
This text has black color on #76F662 background.
This text has white color on #76F662 background.