HEX: #83637A
RGB: (131,99,122)
#83637A contains red, green and blue colors in about the same proportion. Web safe color of #83637A is #996666 (or #966).
#83637A color RGB value is (131,99,122).
RGB: (131,99,122) (51%,39%,48%)
R 131 of 255 = 51%
G 99 of 255 = 39%
B 122 of 255 = 48%
R + G + B ~ 46%. #83637A is middle color (not dark and not light).
R + G + B =
131 + 99 + 122 = 352 (100%)
R 131 of 352 ~ 37.22%
G 99 of 352 ~ 28.13%
B 122 of 352 ~ 34.66%
#83637A color CMYK value is (0,24,7,49).
CMYK: (0,24,7,49) C0M24Y7K49 (0%,24%,7%,49%) (0.00/0.24/0.07/0.49)
83 | 63 | 7A | |
---|---|---|---|
RGB | 131 | 99 | 122 |
HSL | 317° | 13.91% | 45.10% |
HSB/HSV | 317° | 24.43% | 51.37% |
CMYK | 0.00% | 24.43% | 6.87% |
48.63% |
HEX | 83 | 63 | 7A |
Decimal | 131 | 99 | 122 |
Binary | 10000011 | 1100011 | 1111010 |
Octal | 203 | 143 | 172 |
Examples of css and html codes for elements with #83637A color. Also use rgb(131,99,122) instead hex code.
.myTextColor { color: #83637A; }
<p style="color:#83637A">This sample text font color is #83637A.</p>
This text font color is #83637A.
.myBgColor { background-color: #83637A; }
<div style="background-color:#83637A">Inner text</div>
This div background color is #83637A.
.myBorderColor { border: 1px solid #83637A; }
<div style="border:3px solid #83637A">Div</div>
This div border color is #83637A.
.myOpacity80 { color: #83637A; opacity: 0.8; }
<p style="color:#83637A;opacity:0.8;">80%</p>
Text with #83637A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83637A;}
<p style="text-shadow: 3px 3px 1px #83637A">Text here.</p>
This text has shadow with #83637A color.
.textShadow {text-shadow: 3px 3px 1px #83637A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83637A, 5px 5px 20px red">Text here.</p>
This text has shadow with #83637A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83637A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83637A, Direction=45, Strength=4)">Text</p>
This text has shadow with #83637A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83637A; -webkit-box-shadow: 1px 1px 3px 2px #83637A; box-shadow: 1px 1px 3px 2px #83637A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83637A; -webkit-box-shadow: 1px 1px 3px 2px #83637A; box-shadow:1px 1px 3px 2px #83637A;">
Div content here</div>
This text has color #83637A on black background.
This text has color #83637A on white background.
This text has black color on #83637A background.
This text has white color on #83637A background.