HEX: #76D638
RGB: (118,214,56)
#76D638 contains mainly green color. Web safe color of #76D638 is #66CC33 (or #6C3).
#76D638 color RGB value is (118,214,56).
RGB: (118,214,56) (46%,84%,22%)
R 118 of 255 = 46%
G 214 of 255 = 84%
B 56 of 255 = 22%
R + G + B ~ 51%. #76D638 is middle color (not dark and not light).
R + G + B =
118 + 214 + 56 = 388 (100%)
R 118 of 388 ~ 30.41%
G 214 of 388 ~ 55.15%
B 56 of 388 ~ 14.43%
#76D638 color CMYK value is (45,0,74,16).
CMYK: (45,0,74,16) C45M0Y74K16 (45%,0%,74%,16%) (0.45/0.00/0.74/0.16)
76 | D6 | 38 | |
---|---|---|---|
RGB | 118 | 214 | 56 |
HSL | 96° | 65.83% | 52.94% |
HSB/HSV | 96° | 73.83% | 83.92% |
CMYK | 44.86% | 0.00% | 73.83% |
16.08% |
HEX | 76 | D6 | 38 |
Decimal | 118 | 214 | 56 |
Binary | 1110110 | 11010110 | 111000 |
Octal | 166 | 326 | 70 |
Examples of css and html codes for elements with #76D638 color. Also use rgb(118,214,56) instead hex code.
.myTextColor { color: #76D638; }
<p style="color:#76D638">This sample text font color is #76D638.</p>
This text font color is #76D638.
.myBgColor { background-color: #76D638; }
<div style="background-color:#76D638">Inner text</div>
This div background color is #76D638.
.myBorderColor { border: 1px solid #76D638; }
<div style="border:3px solid #76D638">Div</div>
This div border color is #76D638.
.myOpacity80 { color: #76D638; opacity: 0.8; }
<p style="color:#76D638;opacity:0.8;">80%</p>
Text with #76D638 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76D638;}
<p style="text-shadow: 3px 3px 1px #76D638">Text here.</p>
This text has shadow with #76D638 color.
.textShadow {text-shadow: 3px 3px 1px #76D638, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76D638, 5px 5px 20px red">Text here.</p>
This text has shadow with #76D638 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76D638, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76D638, Direction=45, Strength=4)">Text</p>
This text has shadow with #76D638 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76D638; -webkit-box-shadow: 1px 1px 3px 2px #76D638; box-shadow: 1px 1px 3px 2px #76D638; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76D638; -webkit-box-shadow: 1px 1px 3px 2px #76D638; box-shadow:1px 1px 3px 2px #76D638;">
Div content here</div>
This text has color #76D638 on black background.
This text has color #76D638 on white background.
This text has black color on #76D638 background.
This text has white color on #76D638 background.