HEX: #76847D
RGB: (118,132,125)
#76847D contains red, green and blue colors in about the same proportion. Web safe color of #76847D is #669966 (or #696).
#76847D color RGB value is (118,132,125).
RGB: (118,132,125) (46%,52%,49%)
R 118 of 255 = 46%
G 132 of 255 = 52%
B 125 of 255 = 49%
R + G + B ~ 49%. #76847D is middle color (not dark and not light).
R + G + B =
118 + 132 + 125 = 375 (100%)
R 118 of 375 ~ 31.47%
G 132 of 375 ~ 35.2%
B 125 of 375 ~ 33.33%
#76847D color CMYK value is (11,0,5,48).
CMYK: (11,0,5,48) C11M0Y5K48 (11%,0%,5%,48%) (0.11/0.00/0.05/0.48)
76 | 84 | 7D | |
---|---|---|---|
RGB | 118 | 132 | 125 |
HSL | 150° | 5.60% | 49.02% |
HSB/HSV | 150° | 10.61% | 51.76% |
CMYK | 10.61% | 0.00% | 5.30% |
48.24% |
HEX | 76 | 84 | 7D |
Decimal | 118 | 132 | 125 |
Binary | 1110110 | 10000100 | 1111101 |
Octal | 166 | 204 | 175 |
Examples of css and html codes for elements with #76847D color. Also use rgb(118,132,125) instead hex code.
.myTextColor { color: #76847D; }
<p style="color:#76847D">This sample text font color is #76847D.</p>
This text font color is #76847D.
.myBgColor { background-color: #76847D; }
<div style="background-color:#76847D">Inner text</div>
This div background color is #76847D.
.myBorderColor { border: 1px solid #76847D; }
<div style="border:3px solid #76847D">Div</div>
This div border color is #76847D.
.myOpacity80 { color: #76847D; opacity: 0.8; }
<p style="color:#76847D;opacity:0.8;">80%</p>
Text with #76847D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76847D;}
<p style="text-shadow: 3px 3px 1px #76847D">Text here.</p>
This text has shadow with #76847D color.
.textShadow {text-shadow: 3px 3px 1px #76847D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76847D, 5px 5px 20px red">Text here.</p>
This text has shadow with #76847D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76847D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76847D, Direction=45, Strength=4)">Text</p>
This text has shadow with #76847D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76847D; -webkit-box-shadow: 1px 1px 3px 2px #76847D; box-shadow: 1px 1px 3px 2px #76847D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76847D; -webkit-box-shadow: 1px 1px 3px 2px #76847D; box-shadow:1px 1px 3px 2px #76847D;">
Div content here</div>
This text has color #76847D on black background.
This text has color #76847D on white background.
This text has black color on #76847D background.
This text has white color on #76847D background.