HEX: #83736B
RGB: (131,115,107)
#83736B contains red, green and blue colors in about the same proportion. Web safe color of #83736B is #996666 (or #966).
#83736B color RGB value is (131,115,107).
RGB: (131,115,107) (51%,45%,42%)
R 131 of 255 = 51%
G 115 of 255 = 45%
B 107 of 255 = 42%
R + G + B ~ 46%. #83736B is middle color (not dark and not light).
R + G + B =
131 + 115 + 107 = 353 (100%)
R 131 of 353 ~ 37.11%
G 115 of 353 ~ 32.58%
B 107 of 353 ~ 30.31%
#83736B color CMYK value is (0,12,18,49).
CMYK: (0,12,18,49) C0M12Y18K49 (0%,12%,18%,49%) (0.00/0.12/0.18/0.49)
83 | 73 | 6B | |
---|---|---|---|
RGB | 131 | 115 | 107 |
HSL | 20° | 10.08% | 46.67% |
HSB/HSV | 20° | 18.32% | 51.37% |
CMYK | 0.00% | 12.21% | 18.32% |
48.63% |
HEX | 83 | 73 | 6B |
Decimal | 131 | 115 | 107 |
Binary | 10000011 | 1110011 | 1101011 |
Octal | 203 | 163 | 153 |
Examples of css and html codes for elements with #83736B color. Also use rgb(131,115,107) instead hex code.
.myTextColor { color: #83736B; }
<p style="color:#83736B">This sample text font color is #83736B.</p>
This text font color is #83736B.
.myBgColor { background-color: #83736B; }
<div style="background-color:#83736B">Inner text</div>
This div background color is #83736B.
.myBorderColor { border: 1px solid #83736B; }
<div style="border:3px solid #83736B">Div</div>
This div border color is #83736B.
.myOpacity80 { color: #83736B; opacity: 0.8; }
<p style="color:#83736B;opacity:0.8;">80%</p>
Text with #83736B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83736B;}
<p style="text-shadow: 3px 3px 1px #83736B">Text here.</p>
This text has shadow with #83736B color.
.textShadow {text-shadow: 3px 3px 1px #83736B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83736B, 5px 5px 20px red">Text here.</p>
This text has shadow with #83736B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83736B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83736B, Direction=45, Strength=4)">Text</p>
This text has shadow with #83736B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83736B; -webkit-box-shadow: 1px 1px 3px 2px #83736B; box-shadow: 1px 1px 3px 2px #83736B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83736B; -webkit-box-shadow: 1px 1px 3px 2px #83736B; box-shadow:1px 1px 3px 2px #83736B;">
Div content here</div>
This text has color #83736B on black background.
This text has color #83736B on white background.
This text has black color on #83736B background.
This text has white color on #83736B background.