HEX: #83707C
RGB: (131,112,124)
#83707C contains red, green and blue colors in about the same proportion. Web safe color of #83707C is #996666 (or #966).
#83707C color RGB value is (131,112,124).
RGB: (131,112,124) (51%,44%,49%)
R 131 of 255 = 51%
G 112 of 255 = 44%
B 124 of 255 = 49%
R + G + B ~ 48%. #83707C is middle color (not dark and not light).
R + G + B =
131 + 112 + 124 = 367 (100%)
R 131 of 367 ~ 35.69%
G 112 of 367 ~ 30.52%
B 124 of 367 ~ 33.79%
#83707C color CMYK value is (0,15,5,49).
CMYK: (0,15,5,49) C0M15Y5K49 (0%,15%,5%,49%) (0.00/0.15/0.05/0.49)
83 | 70 | 7C | |
---|---|---|---|
RGB | 131 | 112 | 124 |
HSL | 322° | 7.82% | 47.65% |
HSB/HSV | 322° | 14.50% | 51.37% |
CMYK | 0.00% | 14.50% | 5.34% |
48.63% |
HEX | 83 | 70 | 7C |
Decimal | 131 | 112 | 124 |
Binary | 10000011 | 1110000 | 1111100 |
Octal | 203 | 160 | 174 |
Examples of css and html codes for elements with #83707C color. Also use rgb(131,112,124) instead hex code.
.myTextColor { color: #83707C; }
<p style="color:#83707C">This sample text font color is #83707C.</p>
This text font color is #83707C.
.myBgColor { background-color: #83707C; }
<div style="background-color:#83707C">Inner text</div>
This div background color is #83707C.
.myBorderColor { border: 1px solid #83707C; }
<div style="border:3px solid #83707C">Div</div>
This div border color is #83707C.
.myOpacity80 { color: #83707C; opacity: 0.8; }
<p style="color:#83707C;opacity:0.8;">80%</p>
Text with #83707C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83707C;}
<p style="text-shadow: 3px 3px 1px #83707C">Text here.</p>
This text has shadow with #83707C color.
.textShadow {text-shadow: 3px 3px 1px #83707C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83707C, 5px 5px 20px red">Text here.</p>
This text has shadow with #83707C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83707C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83707C, Direction=45, Strength=4)">Text</p>
This text has shadow with #83707C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83707C; -webkit-box-shadow: 1px 1px 3px 2px #83707C; box-shadow: 1px 1px 3px 2px #83707C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83707C; -webkit-box-shadow: 1px 1px 3px 2px #83707C; box-shadow:1px 1px 3px 2px #83707C;">
Div content here</div>
This text has color #83707C on black background.
This text has color #83707C on white background.
This text has black color on #83707C background.
This text has white color on #83707C background.