HEX: #76BF81
RGB: (118,191,129)
#76BF81 contains mainly green color. Web safe color of #76BF81 is #66CC99 (or #6C9).
#76BF81 color RGB value is (118,191,129).
RGB: (118,191,129) (46%,75%,51%)
R 118 of 255 = 46%
G 191 of 255 = 75%
B 129 of 255 = 51%
R + G + B ~ 57%. #76BF81 is middle color (not dark and not light).
R + G + B =
118 + 191 + 129 = 438 (100%)
R 118 of 438 ~ 26.94%
G 191 of 438 ~ 43.61%
B 129 of 438 ~ 29.45%
#76BF81 color CMYK value is (38,0,32,25).
CMYK: (38,0,32,25) C38M0Y32K25 (38%,0%,32%,25%) (0.38/0.00/0.32/0.25)
76 | BF | 81 | |
---|---|---|---|
RGB | 118 | 191 | 129 |
HSL | 129° | 36.32% | 60.59% |
HSB/HSV | 129° | 38.22% | 74.90% |
CMYK | 38.22% | 0.00% | 32.46% |
25.10% |
HEX | 76 | BF | 81 |
Decimal | 118 | 191 | 129 |
Binary | 1110110 | 10111111 | 10000001 |
Octal | 166 | 277 | 201 |
Examples of css and html codes for elements with #76BF81 color. Also use rgb(118,191,129) instead hex code.
.myTextColor { color: #76BF81; }
<p style="color:#76BF81">This sample text font color is #76BF81.</p>
This text font color is #76BF81.
.myBgColor { background-color: #76BF81; }
<div style="background-color:#76BF81">Inner text</div>
This div background color is #76BF81.
.myBorderColor { border: 1px solid #76BF81; }
<div style="border:3px solid #76BF81">Div</div>
This div border color is #76BF81.
.myOpacity80 { color: #76BF81; opacity: 0.8; }
<p style="color:#76BF81;opacity:0.8;">80%</p>
Text with #76BF81 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76BF81;}
<p style="text-shadow: 3px 3px 1px #76BF81">Text here.</p>
This text has shadow with #76BF81 color.
.textShadow {text-shadow: 3px 3px 1px #76BF81, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76BF81, 5px 5px 20px red">Text here.</p>
This text has shadow with #76BF81 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76BF81, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76BF81, Direction=45, Strength=4)">Text</p>
This text has shadow with #76BF81 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76BF81; -webkit-box-shadow: 1px 1px 3px 2px #76BF81; box-shadow: 1px 1px 3px 2px #76BF81; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76BF81; -webkit-box-shadow: 1px 1px 3px 2px #76BF81; box-shadow:1px 1px 3px 2px #76BF81;">
Div content here</div>
This text has color #76BF81 on black background.
This text has color #76BF81 on white background.
This text has black color on #76BF81 background.
This text has white color on #76BF81 background.