HEX: #83847D
RGB: (131,132,125)
#83847D contains red, green and blue colors in about the same proportion. Web safe color of #83847D is #999966 (or #996).
#83847D color RGB value is (131,132,125).
RGB: (131,132,125) (51%,52%,49%)
R 131 of 255 = 51%
G 132 of 255 = 52%
B 125 of 255 = 49%
R + G + B ~ 51%. #83847D is middle color (not dark and not light).
R + G + B =
131 + 132 + 125 = 388 (100%)
R 131 of 388 ~ 33.76%
G 132 of 388 ~ 34.02%
B 125 of 388 ~ 32.22%
#83847D color CMYK value is (1,0,5,48).
CMYK: (1,0,5,48) C1M0Y5K48 (1%,0%,5%,48%) (0.01/0.00/0.05/0.48)
83 | 84 | 7D | |
---|---|---|---|
RGB | 131 | 132 | 125 |
HSL | 69° | 2.77% | 50.39% |
HSB/HSV | 69° | 5.30% | 51.76% |
CMYK | 0.76% | 0.00% | 5.30% |
48.24% |
HEX | 83 | 84 | 7D |
Decimal | 131 | 132 | 125 |
Binary | 10000011 | 10000100 | 1111101 |
Octal | 203 | 204 | 175 |
Examples of css and html codes for elements with #83847D color. Also use rgb(131,132,125) instead hex code.
.myTextColor { color: #83847D; }
<p style="color:#83847D">This sample text font color is #83847D.</p>
This text font color is #83847D.
.myBgColor { background-color: #83847D; }
<div style="background-color:#83847D">Inner text</div>
This div background color is #83847D.
.myBorderColor { border: 1px solid #83847D; }
<div style="border:3px solid #83847D">Div</div>
This div border color is #83847D.
.myOpacity80 { color: #83847D; opacity: 0.8; }
<p style="color:#83847D;opacity:0.8;">80%</p>
Text with #83847D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83847D;}
<p style="text-shadow: 3px 3px 1px #83847D">Text here.</p>
This text has shadow with #83847D color.
.textShadow {text-shadow: 3px 3px 1px #83847D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83847D, 5px 5px 20px red">Text here.</p>
This text has shadow with #83847D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83847D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83847D, Direction=45, Strength=4)">Text</p>
This text has shadow with #83847D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83847D; -webkit-box-shadow: 1px 1px 3px 2px #83847D; box-shadow: 1px 1px 3px 2px #83847D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83847D; -webkit-box-shadow: 1px 1px 3px 2px #83847D; box-shadow:1px 1px 3px 2px #83847D;">
Div content here</div>
This text has color #83847D on black background.
This text has color #83847D on white background.
This text has black color on #83847D background.
This text has white color on #83847D background.