HEX: #825A40
RGB: (130,90,64)
#825A40 contains mainly red and green colors. Web safe color of #825A40 is #996633 (or #963).
#825A40 color RGB value is (130,90,64).
RGB: (130,90,64) (51%,35%,25%)
R 130 of 255 = 51%
G 90 of 255 = 35%
B 64 of 255 = 25%
R + G + B ~ 37%. #825A40 is quite dark color.
R + G + B =
130 + 90 + 64 = 284 (100%)
R 130 of 284 ~ 45.77%
G 90 of 284 ~ 31.69%
B 64 of 284 ~ 22.54%
#825A40 color CMYK value is (0,31,51,49).
CMYK: (0,31,51,49) C0M31Y51K49 (0%,31%,51%,49%) (0.00/0.31/0.51/0.49)
82 | 5A | 40 | |
---|---|---|---|
RGB | 130 | 90 | 64 |
HSL | 24° | 34.02% | 38.04% |
HSB/HSV | 24° | 50.77% | 50.98% |
CMYK | 0.00% | 30.77% | 50.77% |
49.02% |
HEX | 82 | 5A | 40 |
Decimal | 130 | 90 | 64 |
Binary | 10000010 | 1011010 | 1000000 |
Octal | 202 | 132 | 100 |
Examples of css and html codes for elements with #825A40 color. Also use rgb(130,90,64) instead hex code.
.myTextColor { color: #825A40; }
<p style="color:#825A40">This sample text font color is #825A40.</p>
This text font color is #825A40.
.myBgColor { background-color: #825A40; }
<div style="background-color:#825A40">Inner text</div>
This div background color is #825A40.
.myBorderColor { border: 1px solid #825A40; }
<div style="border:3px solid #825A40">Div</div>
This div border color is #825A40.
.myOpacity80 { color: #825A40; opacity: 0.8; }
<p style="color:#825A40;opacity:0.8;">80%</p>
Text with #825A40 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #825A40;}
<p style="text-shadow: 3px 3px 1px #825A40">Text here.</p>
This text has shadow with #825A40 color.
.textShadow {text-shadow: 3px 3px 1px #825A40, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #825A40, 5px 5px 20px red">Text here.</p>
This text has shadow with #825A40 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#825A40, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#825A40, Direction=45, Strength=4)">Text</p>
This text has shadow with #825A40 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #825A40; -webkit-box-shadow: 1px 1px 3px 2px #825A40; box-shadow: 1px 1px 3px 2px #825A40; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #825A40; -webkit-box-shadow: 1px 1px 3px 2px #825A40; box-shadow:1px 1px 3px 2px #825A40;">
Div content here</div>
This text has color #825A40 on black background.
This text has color #825A40 on white background.
This text has black color on #825A40 background.
This text has white color on #825A40 background.