HEX: #76DB65
RGB: (118,219,101)
#76DB65 contains mainly green color. Web safe color of #76DB65 is #66CC66 (or #6C6).
#76DB65 color RGB value is (118,219,101).
RGB: (118,219,101) (46%,86%,40%)
R 118 of 255 = 46%
G 219 of 255 = 86%
B 101 of 255 = 40%
R + G + B ~ 57%. #76DB65 is middle color (not dark and not light).
R + G + B =
118 + 219 + 101 = 438 (100%)
R 118 of 438 ~ 26.94%
G 219 of 438 ~ 50%
B 101 of 438 ~ 23.06%
#76DB65 color CMYK value is (46,0,54,14).
CMYK: (46,0,54,14) C46M0Y54K14 (46%,0%,54%,14%) (0.46/0.00/0.54/0.14)
76 | DB | 65 | |
---|---|---|---|
RGB | 118 | 219 | 101 |
HSL | 111° | 62.11% | 62.75% |
HSB/HSV | 111° | 53.88% | 85.88% |
CMYK | 46.12% | 0.00% | 53.88% |
14.12% |
HEX | 76 | DB | 65 |
Decimal | 118 | 219 | 101 |
Binary | 1110110 | 11011011 | 1100101 |
Octal | 166 | 333 | 145 |
Examples of css and html codes for elements with #76DB65 color. Also use rgb(118,219,101) instead hex code.
.myTextColor { color: #76DB65; }
<p style="color:#76DB65">This sample text font color is #76DB65.</p>
This text font color is #76DB65.
.myBgColor { background-color: #76DB65; }
<div style="background-color:#76DB65">Inner text</div>
This div background color is #76DB65.
.myBorderColor { border: 1px solid #76DB65; }
<div style="border:3px solid #76DB65">Div</div>
This div border color is #76DB65.
.myOpacity80 { color: #76DB65; opacity: 0.8; }
<p style="color:#76DB65;opacity:0.8;">80%</p>
Text with #76DB65 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76DB65;}
<p style="text-shadow: 3px 3px 1px #76DB65">Text here.</p>
This text has shadow with #76DB65 color.
.textShadow {text-shadow: 3px 3px 1px #76DB65, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76DB65, 5px 5px 20px red">Text here.</p>
This text has shadow with #76DB65 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76DB65, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76DB65, Direction=45, Strength=4)">Text</p>
This text has shadow with #76DB65 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76DB65; -webkit-box-shadow: 1px 1px 3px 2px #76DB65; box-shadow: 1px 1px 3px 2px #76DB65; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76DB65; -webkit-box-shadow: 1px 1px 3px 2px #76DB65; box-shadow:1px 1px 3px 2px #76DB65;">
Div content here</div>
This text has color #76DB65 on black background.
This text has color #76DB65 on white background.
This text has black color on #76DB65 background.
This text has white color on #76DB65 background.