HEX: #76B172
RGB: (118,177,114)
#76B172 contains mainly red and green colors. Web safe color of #76B172 is #669966 (or #696).
#76B172 color RGB value is (118,177,114).
RGB: (118,177,114) (46%,69%,45%)
R 118 of 255 = 46%
G 177 of 255 = 69%
B 114 of 255 = 45%
R + G + B ~ 53%. #76B172 is middle color (not dark and not light).
R + G + B =
118 + 177 + 114 = 409 (100%)
R 118 of 409 ~ 28.85%
G 177 of 409 ~ 43.28%
B 114 of 409 ~ 27.87%
#76B172 color CMYK value is (33,0,36,31).
CMYK: (33,0,36,31) C33M0Y36K31 (33%,0%,36%,31%) (0.33/0.00/0.36/0.31)
76 | B1 | 72 | |
---|---|---|---|
RGB | 118 | 177 | 114 |
HSL | 116° | 28.77% | 57.06% |
HSB/HSV | 116° | 35.59% | 69.41% |
CMYK | 33.33% | 0.00% | 35.59% |
30.59% |
HEX | 76 | B1 | 72 |
Decimal | 118 | 177 | 114 |
Binary | 1110110 | 10110001 | 1110010 |
Octal | 166 | 261 | 162 |
Examples of css and html codes for elements with #76B172 color. Also use rgb(118,177,114) instead hex code.
.myTextColor { color: #76B172; }
<p style="color:#76B172">This sample text font color is #76B172.</p>
This text font color is #76B172.
.myBgColor { background-color: #76B172; }
<div style="background-color:#76B172">Inner text</div>
This div background color is #76B172.
.myBorderColor { border: 1px solid #76B172; }
<div style="border:3px solid #76B172">Div</div>
This div border color is #76B172.
.myOpacity80 { color: #76B172; opacity: 0.8; }
<p style="color:#76B172;opacity:0.8;">80%</p>
Text with #76B172 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76B172;}
<p style="text-shadow: 3px 3px 1px #76B172">Text here.</p>
This text has shadow with #76B172 color.
.textShadow {text-shadow: 3px 3px 1px #76B172, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76B172, 5px 5px 20px red">Text here.</p>
This text has shadow with #76B172 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76B172, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76B172, Direction=45, Strength=4)">Text</p>
This text has shadow with #76B172 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76B172; -webkit-box-shadow: 1px 1px 3px 2px #76B172; box-shadow: 1px 1px 3px 2px #76B172; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76B172; -webkit-box-shadow: 1px 1px 3px 2px #76B172; box-shadow:1px 1px 3px 2px #76B172;">
Div content here</div>
This text has color #76B172 on black background.
This text has color #76B172 on white background.
This text has black color on #76B172 background.
This text has white color on #76B172 background.