HEX: #76B649
RGB: (118,182,73)
#76B649 contains mainly green color. Web safe color of #76B649 is #66CC33 (or #6C3).
#76B649 color RGB value is (118,182,73).
RGB: (118,182,73) (46%,71%,29%)
R 118 of 255 = 46%
G 182 of 255 = 71%
B 73 of 255 = 29%
R + G + B ~ 49%. #76B649 is middle color (not dark and not light).
R + G + B =
118 + 182 + 73 = 373 (100%)
R 118 of 373 ~ 31.64%
G 182 of 373 ~ 48.79%
B 73 of 373 ~ 19.57%
#76B649 color CMYK value is (35,0,60,29).
CMYK: (35,0,60,29) C35M0Y60K29 (35%,0%,60%,29%) (0.35/0.00/0.60/0.29)
76 | B6 | 49 | |
---|---|---|---|
RGB | 118 | 182 | 73 |
HSL | 95° | 42.75% | 50.00% |
HSB/HSV | 95° | 59.89% | 71.37% |
CMYK | 35.16% | 0.00% | 59.89% |
28.63% |
HEX | 76 | B6 | 49 |
Decimal | 118 | 182 | 73 |
Binary | 1110110 | 10110110 | 1001001 |
Octal | 166 | 266 | 111 |
Examples of css and html codes for elements with #76B649 color. Also use rgb(118,182,73) instead hex code.
.myTextColor { color: #76B649; }
<p style="color:#76B649">This sample text font color is #76B649.</p>
This text font color is #76B649.
.myBgColor { background-color: #76B649; }
<div style="background-color:#76B649">Inner text</div>
This div background color is #76B649.
.myBorderColor { border: 1px solid #76B649; }
<div style="border:3px solid #76B649">Div</div>
This div border color is #76B649.
.myOpacity80 { color: #76B649; opacity: 0.8; }
<p style="color:#76B649;opacity:0.8;">80%</p>
Text with #76B649 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76B649;}
<p style="text-shadow: 3px 3px 1px #76B649">Text here.</p>
This text has shadow with #76B649 color.
.textShadow {text-shadow: 3px 3px 1px #76B649, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76B649, 5px 5px 20px red">Text here.</p>
This text has shadow with #76B649 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76B649, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76B649, Direction=45, Strength=4)">Text</p>
This text has shadow with #76B649 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76B649; -webkit-box-shadow: 1px 1px 3px 2px #76B649; box-shadow: 1px 1px 3px 2px #76B649; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76B649; -webkit-box-shadow: 1px 1px 3px 2px #76B649; box-shadow:1px 1px 3px 2px #76B649;">
Div content here</div>
This text has color #76B649 on black background.
This text has color #76B649 on white background.
This text has black color on #76B649 background.
This text has white color on #76B649 background.