HEX: #76B383
RGB: (118,179,131)
#76B383 contains mainly green and blue colors. Web safe color of #76B383 is #669999 (or #699).
#76B383 color RGB value is (118,179,131).
RGB: (118,179,131) (46%,70%,51%)
R 118 of 255 = 46%
G 179 of 255 = 70%
B 131 of 255 = 51%
R + G + B ~ 56%. #76B383 is middle color (not dark and not light).
R + G + B =
118 + 179 + 131 = 428 (100%)
R 118 of 428 ~ 27.57%
G 179 of 428 ~ 41.82%
B 131 of 428 ~ 30.61%
#76B383 color CMYK value is (34,0,27,30).
CMYK: (34,0,27,30) C34M0Y27K30 (34%,0%,27%,30%) (0.34/0.00/0.27/0.30)
76 | B3 | 83 | |
---|---|---|---|
RGB | 118 | 179 | 131 |
HSL | 133° | 28.64% | 58.24% |
HSB/HSV | 133° | 34.08% | 70.20% |
CMYK | 34.08% | 0.00% | 26.82% |
29.80% |
HEX | 76 | B3 | 83 |
Decimal | 118 | 179 | 131 |
Binary | 1110110 | 10110011 | 10000011 |
Octal | 166 | 263 | 203 |
Examples of css and html codes for elements with #76B383 color. Also use rgb(118,179,131) instead hex code.
.myTextColor { color: #76B383; }
<p style="color:#76B383">This sample text font color is #76B383.</p>
This text font color is #76B383.
.myBgColor { background-color: #76B383; }
<div style="background-color:#76B383">Inner text</div>
This div background color is #76B383.
.myBorderColor { border: 1px solid #76B383; }
<div style="border:3px solid #76B383">Div</div>
This div border color is #76B383.
.myOpacity80 { color: #76B383; opacity: 0.8; }
<p style="color:#76B383;opacity:0.8;">80%</p>
Text with #76B383 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76B383;}
<p style="text-shadow: 3px 3px 1px #76B383">Text here.</p>
This text has shadow with #76B383 color.
.textShadow {text-shadow: 3px 3px 1px #76B383, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76B383, 5px 5px 20px red">Text here.</p>
This text has shadow with #76B383 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76B383, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76B383, Direction=45, Strength=4)">Text</p>
This text has shadow with #76B383 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76B383; -webkit-box-shadow: 1px 1px 3px 2px #76B383; box-shadow: 1px 1px 3px 2px #76B383; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76B383; -webkit-box-shadow: 1px 1px 3px 2px #76B383; box-shadow:1px 1px 3px 2px #76B383;">
Div content here</div>
This text has color #76B383 on black background.
This text has color #76B383 on white background.
This text has black color on #76B383 background.
This text has white color on #76B383 background.