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