HEX: #83525F
RGB: (131,82,95)
#83525F contains red, green and blue colors in about the same proportion. Web safe color of #83525F is #996666 (or #966).
#83525F color RGB value is (131,82,95).
RGB: (131,82,95) (51%,32%,37%)
R 131 of 255 = 51%
G 82 of 255 = 32%
B 95 of 255 = 37%
R + G + B ~ 40%. #83525F is middle color (not dark and not light).
R + G + B =
131 + 82 + 95 = 308 (100%)
R 131 of 308 ~ 42.53%
G 82 of 308 ~ 26.62%
B 95 of 308 ~ 30.84%
#83525F color CMYK value is (0,37,27,49).
CMYK: (0,37,27,49) C0M37Y27K49 (0%,37%,27%,49%) (0.00/0.37/0.27/0.49)
83 | 52 | 5F | |
---|---|---|---|
RGB | 131 | 82 | 95 |
HSL | 344° | 23.00% | 41.76% |
HSB/HSV | 344° | 37.40% | 51.37% |
CMYK | 0.00% | 37.40% | 27.48% |
48.63% |
HEX | 83 | 52 | 5F |
Decimal | 131 | 82 | 95 |
Binary | 10000011 | 1010010 | 1011111 |
Octal | 203 | 122 | 137 |
Examples of css and html codes for elements with #83525F color. Also use rgb(131,82,95) instead hex code.
.myTextColor { color: #83525F; }
<p style="color:#83525F">This sample text font color is #83525F.</p>
This text font color is #83525F.
.myBgColor { background-color: #83525F; }
<div style="background-color:#83525F">Inner text</div>
This div background color is #83525F.
.myBorderColor { border: 1px solid #83525F; }
<div style="border:3px solid #83525F">Div</div>
This div border color is #83525F.
.myOpacity80 { color: #83525F; opacity: 0.8; }
<p style="color:#83525F;opacity:0.8;">80%</p>
Text with #83525F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83525F;}
<p style="text-shadow: 3px 3px 1px #83525F">Text here.</p>
This text has shadow with #83525F color.
.textShadow {text-shadow: 3px 3px 1px #83525F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83525F, 5px 5px 20px red">Text here.</p>
This text has shadow with #83525F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83525F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83525F, Direction=45, Strength=4)">Text</p>
This text has shadow with #83525F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83525F; -webkit-box-shadow: 1px 1px 3px 2px #83525F; box-shadow: 1px 1px 3px 2px #83525F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83525F; -webkit-box-shadow: 1px 1px 3px 2px #83525F; box-shadow:1px 1px 3px 2px #83525F;">
Div content here</div>
This text has color #83525F on black background.
This text has color #83525F on white background.
This text has black color on #83525F background.
This text has white color on #83525F background.