HEX: #84707E
RGB: (132,112,126)
#84707E contains red, green and blue colors in about the same proportion. Web safe color of #84707E is #996666 (or #966).
#84707E color RGB value is (132,112,126).
RGB: (132,112,126) (52%,44%,49%)
R 132 of 255 = 52%
G 112 of 255 = 44%
B 126 of 255 = 49%
R + G + B ~ 48%. #84707E is middle color (not dark and not light).
R + G + B =
132 + 112 + 126 = 370 (100%)
R 132 of 370 ~ 35.68%
G 112 of 370 ~ 30.27%
B 126 of 370 ~ 34.05%
#84707E color CMYK value is (0,15,5,48).
CMYK: (0,15,5,48) C0M15Y5K48 (0%,15%,5%,48%) (0.00/0.15/0.05/0.48)
84 | 70 | 7E | |
---|---|---|---|
RGB | 132 | 112 | 126 |
HSL | 318° | 8.20% | 47.84% |
HSB/HSV | 318° | 15.15% | 51.76% |
CMYK | 0.00% | 15.15% | 4.55% |
48.24% |
HEX | 84 | 70 | 7E |
Decimal | 132 | 112 | 126 |
Binary | 10000100 | 1110000 | 1111110 |
Octal | 204 | 160 | 176 |
Examples of css and html codes for elements with #84707E color. Also use rgb(132,112,126) instead hex code.
.myTextColor { color: #84707E; }
<p style="color:#84707E">This sample text font color is #84707E.</p>
This text font color is #84707E.
.myBgColor { background-color: #84707E; }
<div style="background-color:#84707E">Inner text</div>
This div background color is #84707E.
.myBorderColor { border: 1px solid #84707E; }
<div style="border:3px solid #84707E">Div</div>
This div border color is #84707E.
.myOpacity80 { color: #84707E; opacity: 0.8; }
<p style="color:#84707E;opacity:0.8;">80%</p>
Text with #84707E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84707E;}
<p style="text-shadow: 3px 3px 1px #84707E">Text here.</p>
This text has shadow with #84707E color.
.textShadow {text-shadow: 3px 3px 1px #84707E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84707E, 5px 5px 20px red">Text here.</p>
This text has shadow with #84707E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84707E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84707E, Direction=45, Strength=4)">Text</p>
This text has shadow with #84707E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84707E; -webkit-box-shadow: 1px 1px 3px 2px #84707E; box-shadow: 1px 1px 3px 2px #84707E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84707E; -webkit-box-shadow: 1px 1px 3px 2px #84707E; box-shadow:1px 1px 3px 2px #84707E;">
Div content here</div>
This text has color #84707E on black background.
This text has color #84707E on white background.
This text has black color on #84707E background.
This text has white color on #84707E background.