HEX: #76837D
RGB: (118,131,125)
#76837D contains red, green and blue colors in about the same proportion. Web safe color of #76837D is #669966 (or #696).
#76837D color RGB value is (118,131,125).
RGB: (118,131,125) (46%,51%,49%)
R 118 of 255 = 46%
G 131 of 255 = 51%
B 125 of 255 = 49%
R + G + B ~ 49%. #76837D is middle color (not dark and not light).
R + G + B =
118 + 131 + 125 = 374 (100%)
R 118 of 374 ~ 31.55%
G 131 of 374 ~ 35.03%
B 125 of 374 ~ 33.42%
#76837D color CMYK value is (10,0,5,49).
CMYK: (10,0,5,49) C10M0Y5K49 (10%,0%,5%,49%) (0.10/0.00/0.05/0.49)
76 | 83 | 7D | |
---|---|---|---|
RGB | 118 | 131 | 125 |
HSL | 152° | 5.22% | 48.82% |
HSB/HSV | 152° | 9.92% | 51.37% |
CMYK | 9.92% | 0.00% | 4.58% |
48.63% |
HEX | 76 | 83 | 7D |
Decimal | 118 | 131 | 125 |
Binary | 1110110 | 10000011 | 1111101 |
Octal | 166 | 203 | 175 |
Examples of css and html codes for elements with #76837D color. Also use rgb(118,131,125) instead hex code.
.myTextColor { color: #76837D; }
<p style="color:#76837D">This sample text font color is #76837D.</p>
This text font color is #76837D.
.myBgColor { background-color: #76837D; }
<div style="background-color:#76837D">Inner text</div>
This div background color is #76837D.
.myBorderColor { border: 1px solid #76837D; }
<div style="border:3px solid #76837D">Div</div>
This div border color is #76837D.
.myOpacity80 { color: #76837D; opacity: 0.8; }
<p style="color:#76837D;opacity:0.8;">80%</p>
Text with #76837D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76837D;}
<p style="text-shadow: 3px 3px 1px #76837D">Text here.</p>
This text has shadow with #76837D color.
.textShadow {text-shadow: 3px 3px 1px #76837D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76837D, 5px 5px 20px red">Text here.</p>
This text has shadow with #76837D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76837D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76837D, Direction=45, Strength=4)">Text</p>
This text has shadow with #76837D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76837D; -webkit-box-shadow: 1px 1px 3px 2px #76837D; box-shadow: 1px 1px 3px 2px #76837D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76837D; -webkit-box-shadow: 1px 1px 3px 2px #76837D; box-shadow:1px 1px 3px 2px #76837D;">
Div content here</div>
This text has color #76837D on black background.
This text has color #76837D on white background.
This text has black color on #76837D background.
This text has white color on #76837D background.