HEX: #83777D
RGB: (131,119,125)
#83777D contains red, green and blue colors in about the same proportion. Web safe color of #83777D is #996666 (or #966).
#83777D color RGB value is (131,119,125).
RGB: (131,119,125) (51%,47%,49%)
R 131 of 255 = 51%
G 119 of 255 = 47%
B 125 of 255 = 49%
R + G + B ~ 49%. #83777D is middle color (not dark and not light).
R + G + B =
131 + 119 + 125 = 375 (100%)
R 131 of 375 ~ 34.93%
G 119 of 375 ~ 31.73%
B 125 of 375 ~ 33.33%
#83777D color CMYK value is (0,9,5,49).
CMYK: (0,9,5,49) C0M9Y5K49 (0%,9%,5%,49%) (0.00/0.09/0.05/0.49)
83 | 77 | 7D | |
---|---|---|---|
RGB | 131 | 119 | 125 |
HSL | 330° | 4.80% | 49.02% |
HSB/HSV | 330° | 9.16% | 51.37% |
CMYK | 0.00% | 9.16% | 4.58% |
48.63% |
HEX | 83 | 77 | 7D |
Decimal | 131 | 119 | 125 |
Binary | 10000011 | 1110111 | 1111101 |
Octal | 203 | 167 | 175 |
Examples of css and html codes for elements with #83777D color. Also use rgb(131,119,125) instead hex code.
.myTextColor { color: #83777D; }
<p style="color:#83777D">This sample text font color is #83777D.</p>
This text font color is #83777D.
.myBgColor { background-color: #83777D; }
<div style="background-color:#83777D">Inner text</div>
This div background color is #83777D.
.myBorderColor { border: 1px solid #83777D; }
<div style="border:3px solid #83777D">Div</div>
This div border color is #83777D.
.myOpacity80 { color: #83777D; opacity: 0.8; }
<p style="color:#83777D;opacity:0.8;">80%</p>
Text with #83777D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83777D;}
<p style="text-shadow: 3px 3px 1px #83777D">Text here.</p>
This text has shadow with #83777D color.
.textShadow {text-shadow: 3px 3px 1px #83777D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83777D, 5px 5px 20px red">Text here.</p>
This text has shadow with #83777D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83777D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83777D, Direction=45, Strength=4)">Text</p>
This text has shadow with #83777D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83777D; -webkit-box-shadow: 1px 1px 3px 2px #83777D; box-shadow: 1px 1px 3px 2px #83777D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83777D; -webkit-box-shadow: 1px 1px 3px 2px #83777D; box-shadow:1px 1px 3px 2px #83777D;">
Div content here</div>
This text has color #83777D on black background.
This text has color #83777D on white background.
This text has black color on #83777D background.
This text has white color on #83777D background.