HEX: #836C84
RGB: (131,108,132)
#836C84 contains red, green and blue colors in about the same proportion. Web safe color of #836C84 is #996699 (or #969).
#836C84 color RGB value is (131,108,132).
RGB: (131,108,132) (51%,42%,52%)
R 131 of 255 = 51%
G 108 of 255 = 42%
B 132 of 255 = 52%
R + G + B ~ 48%. #836C84 is middle color (not dark and not light).
R + G + B =
131 + 108 + 132 = 371 (100%)
R 131 of 371 ~ 35.31%
G 108 of 371 ~ 29.11%
B 132 of 371 ~ 35.58%
#836C84 color CMYK value is (1,18,0,48).
CMYK: (1,18,0,48) C1M18Y0K48 (1%,18%,0%,48%) (0.01/0.18/0.00/0.48)
83 | 6C | 84 | |
---|---|---|---|
RGB | 131 | 108 | 132 |
HSL | 298° | 10.00% | 47.06% |
HSB/HSV | 298° | 18.18% | 51.76% |
CMYK | 0.76% | 18.18% | 0.00% |
48.24% |
HEX | 83 | 6C | 84 |
Decimal | 131 | 108 | 132 |
Binary | 10000011 | 1101100 | 10000100 |
Octal | 203 | 154 | 204 |
Examples of css and html codes for elements with #836C84 color. Also use rgb(131,108,132) instead hex code.
.myTextColor { color: #836C84; }
<p style="color:#836C84">This sample text font color is #836C84.</p>
This text font color is #836C84.
.myBgColor { background-color: #836C84; }
<div style="background-color:#836C84">Inner text</div>
This div background color is #836C84.
.myBorderColor { border: 1px solid #836C84; }
<div style="border:3px solid #836C84">Div</div>
This div border color is #836C84.
.myOpacity80 { color: #836C84; opacity: 0.8; }
<p style="color:#836C84;opacity:0.8;">80%</p>
Text with #836C84 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #836C84;}
<p style="text-shadow: 3px 3px 1px #836C84">Text here.</p>
This text has shadow with #836C84 color.
.textShadow {text-shadow: 3px 3px 1px #836C84, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #836C84, 5px 5px 20px red">Text here.</p>
This text has shadow with #836C84 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#836C84, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#836C84, Direction=45, Strength=4)">Text</p>
This text has shadow with #836C84 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #836C84; -webkit-box-shadow: 1px 1px 3px 2px #836C84; box-shadow: 1px 1px 3px 2px #836C84; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #836C84; -webkit-box-shadow: 1px 1px 3px 2px #836C84; box-shadow:1px 1px 3px 2px #836C84;">
Div content here</div>
This text has color #836C84 on black background.
This text has color #836C84 on white background.
This text has black color on #836C84 background.
This text has white color on #836C84 background.