HEX: #76887D
RGB: (118,136,125)
#76887D contains red, green and blue colors in about the same proportion. Web safe color of #76887D is #669966 (or #696).
#76887D color RGB value is (118,136,125).
RGB: (118,136,125) (46%,53%,49%)
R 118 of 255 = 46%
G 136 of 255 = 53%
B 125 of 255 = 49%
R + G + B ~ 49%. #76887D is middle color (not dark and not light).
R + G + B =
118 + 136 + 125 = 379 (100%)
R 118 of 379 ~ 31.13%
G 136 of 379 ~ 35.88%
B 125 of 379 ~ 32.98%
#76887D color CMYK value is (13,0,8,47).
CMYK: (13,0,8,47) C13M0Y8K47 (13%,0%,8%,47%) (0.13/0.00/0.08/0.47)
76 | 88 | 7D | |
---|---|---|---|
RGB | 118 | 136 | 125 |
HSL | 143° | 7.09% | 49.80% |
HSB/HSV | 143° | 13.24% | 53.33% |
CMYK | 13.24% | 0.00% | 8.09% |
46.67% |
HEX | 76 | 88 | 7D |
Decimal | 118 | 136 | 125 |
Binary | 1110110 | 10001000 | 1111101 |
Octal | 166 | 210 | 175 |
Examples of css and html codes for elements with #76887D color. Also use rgb(118,136,125) instead hex code.
.myTextColor { color: #76887D; }
<p style="color:#76887D">This sample text font color is #76887D.</p>
This text font color is #76887D.
.myBgColor { background-color: #76887D; }
<div style="background-color:#76887D">Inner text</div>
This div background color is #76887D.
.myBorderColor { border: 1px solid #76887D; }
<div style="border:3px solid #76887D">Div</div>
This div border color is #76887D.
.myOpacity80 { color: #76887D; opacity: 0.8; }
<p style="color:#76887D;opacity:0.8;">80%</p>
Text with #76887D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76887D;}
<p style="text-shadow: 3px 3px 1px #76887D">Text here.</p>
This text has shadow with #76887D color.
.textShadow {text-shadow: 3px 3px 1px #76887D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76887D, 5px 5px 20px red">Text here.</p>
This text has shadow with #76887D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76887D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76887D, Direction=45, Strength=4)">Text</p>
This text has shadow with #76887D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76887D; -webkit-box-shadow: 1px 1px 3px 2px #76887D; box-shadow: 1px 1px 3px 2px #76887D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76887D; -webkit-box-shadow: 1px 1px 3px 2px #76887D; box-shadow:1px 1px 3px 2px #76887D;">
Div content here</div>
This text has color #76887D on black background.
This text has color #76887D on white background.
This text has black color on #76887D background.
This text has white color on #76887D background.