HEX: #825556
RGB: (130,85,86)
#825556 contains red, green and blue colors in about the same proportion. Web safe color of #825556 is #996666 (or #966).
#825556 color RGB value is (130,85,86).
RGB: (130,85,86) (51%,33%,34%)
R 130 of 255 = 51%
G 85 of 255 = 33%
B 86 of 255 = 34%
R + G + B ~ 39%. #825556 is quite dark color.
R + G + B =
130 + 85 + 86 = 301 (100%)
R 130 of 301 ~ 43.19%
G 85 of 301 ~ 28.24%
B 86 of 301 ~ 28.57%
#825556 color CMYK value is (0,35,34,49).
CMYK: (0,35,34,49) C0M35Y34K49 (0%,35%,34%,49%) (0.00/0.35/0.34/0.49)
82 | 55 | 56 | |
---|---|---|---|
RGB | 130 | 85 | 86 |
HSL | 359° | 20.93% | 42.16% |
HSB/HSV | 359° | 34.62% | 50.98% |
CMYK | 0.00% | 34.62% | 33.85% |
49.02% |
HEX | 82 | 55 | 56 |
Decimal | 130 | 85 | 86 |
Binary | 10000010 | 1010101 | 1010110 |
Octal | 202 | 125 | 126 |
Examples of css and html codes for elements with #825556 color. Also use rgb(130,85,86) instead hex code.
.myTextColor { color: #825556; }
<p style="color:#825556">This sample text font color is #825556.</p>
This text font color is #825556.
.myBgColor { background-color: #825556; }
<div style="background-color:#825556">Inner text</div>
This div background color is #825556.
.myBorderColor { border: 1px solid #825556; }
<div style="border:3px solid #825556">Div</div>
This div border color is #825556.
.myOpacity80 { color: #825556; opacity: 0.8; }
<p style="color:#825556;opacity:0.8;">80%</p>
Text with #825556 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #825556;}
<p style="text-shadow: 3px 3px 1px #825556">Text here.</p>
This text has shadow with #825556 color.
.textShadow {text-shadow: 3px 3px 1px #825556, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #825556, 5px 5px 20px red">Text here.</p>
This text has shadow with #825556 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#825556, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#825556, Direction=45, Strength=4)">Text</p>
This text has shadow with #825556 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #825556; -webkit-box-shadow: 1px 1px 3px 2px #825556; box-shadow: 1px 1px 3px 2px #825556; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #825556; -webkit-box-shadow: 1px 1px 3px 2px #825556; box-shadow:1px 1px 3px 2px #825556;">
Div content here</div>
This text has color #825556 on black background.
This text has color #825556 on white background.
This text has black color on #825556 background.
This text has white color on #825556 background.