HEX: #76D396
RGB: (118,211,150)
#76D396 contains mainly green color. Web safe color of #76D396 is #66CC99 (or #6C9).
#76D396 color RGB value is (118,211,150).
RGB: (118,211,150) (46%,83%,59%)
R 118 of 255 = 46%
G 211 of 255 = 83%
B 150 of 255 = 59%
R + G + B ~ 63%. #76D396 is quite light color.
R + G + B =
118 + 211 + 150 = 479 (100%)
R 118 of 479 ~ 24.63%
G 211 of 479 ~ 44.05%
B 150 of 479 ~ 31.32%
#76D396 color CMYK value is (44,0,29,17).
CMYK: (44,0,29,17) C44M0Y29K17 (44%,0%,29%,17%) (0.44/0.00/0.29/0.17)
76 | D3 | 96 | |
---|---|---|---|
RGB | 118 | 211 | 150 |
HSL | 141° | 51.38% | 64.51% |
HSB/HSV | 141° | 44.08% | 82.75% |
CMYK | 44.08% | 0.00% | 28.91% |
17.25% |
HEX | 76 | D3 | 96 |
Decimal | 118 | 211 | 150 |
Binary | 1110110 | 11010011 | 10010110 |
Octal | 166 | 323 | 226 |
Examples of css and html codes for elements with #76D396 color. Also use rgb(118,211,150) instead hex code.
.myTextColor { color: #76D396; }
<p style="color:#76D396">This sample text font color is #76D396.</p>
This text font color is #76D396.
.myBgColor { background-color: #76D396; }
<div style="background-color:#76D396">Inner text</div>
This div background color is #76D396.
.myBorderColor { border: 1px solid #76D396; }
<div style="border:3px solid #76D396">Div</div>
This div border color is #76D396.
.myOpacity80 { color: #76D396; opacity: 0.8; }
<p style="color:#76D396;opacity:0.8;">80%</p>
Text with #76D396 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76D396;}
<p style="text-shadow: 3px 3px 1px #76D396">Text here.</p>
This text has shadow with #76D396 color.
.textShadow {text-shadow: 3px 3px 1px #76D396, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76D396, 5px 5px 20px red">Text here.</p>
This text has shadow with #76D396 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76D396, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76D396, Direction=45, Strength=4)">Text</p>
This text has shadow with #76D396 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76D396; -webkit-box-shadow: 1px 1px 3px 2px #76D396; box-shadow: 1px 1px 3px 2px #76D396; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76D396; -webkit-box-shadow: 1px 1px 3px 2px #76D396; box-shadow:1px 1px 3px 2px #76D396;">
Div content here</div>
This text has color #76D396 on black background.
This text has color #76D396 on white background.
This text has black color on #76D396 background.
This text has white color on #76D396 background.