HEX: #827246
RGB: (130,114,70)
#827246 contains mainly red and green colors. Web safe color of #827246 is #996633 (or #963).
#827246 color RGB value is (130,114,70).
RGB: (130,114,70) (51%,45%,27%)
R 130 of 255 = 51%
G 114 of 255 = 45%
B 70 of 255 = 27%
R + G + B ~ 41%. #827246 is middle color (not dark and not light).
R + G + B =
130 + 114 + 70 = 314 (100%)
R 130 of 314 ~ 41.4%
G 114 of 314 ~ 36.31%
B 70 of 314 ~ 22.29%
#827246 color CMYK value is (0,12,46,49).
CMYK: (0,12,46,49) C0M12Y46K49 (0%,12%,46%,49%) (0.00/0.12/0.46/0.49)
82 | 72 | 46 | |
---|---|---|---|
RGB | 130 | 114 | 70 |
HSL | 44° | 30.00% | 39.22% |
HSB/HSV | 44° | 46.15% | 50.98% |
CMYK | 0.00% | 12.31% | 46.15% |
49.02% |
HEX | 82 | 72 | 46 |
Decimal | 130 | 114 | 70 |
Binary | 10000010 | 1110010 | 1000110 |
Octal | 202 | 162 | 106 |
Examples of css and html codes for elements with #827246 color. Also use rgb(130,114,70) instead hex code.
.myTextColor { color: #827246; }
<p style="color:#827246">This sample text font color is #827246.</p>
This text font color is #827246.
.myBgColor { background-color: #827246; }
<div style="background-color:#827246">Inner text</div>
This div background color is #827246.
.myBorderColor { border: 1px solid #827246; }
<div style="border:3px solid #827246">Div</div>
This div border color is #827246.
.myOpacity80 { color: #827246; opacity: 0.8; }
<p style="color:#827246;opacity:0.8;">80%</p>
Text with #827246 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #827246;}
<p style="text-shadow: 3px 3px 1px #827246">Text here.</p>
This text has shadow with #827246 color.
.textShadow {text-shadow: 3px 3px 1px #827246, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #827246, 5px 5px 20px red">Text here.</p>
This text has shadow with #827246 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#827246, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#827246, Direction=45, Strength=4)">Text</p>
This text has shadow with #827246 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #827246; -webkit-box-shadow: 1px 1px 3px 2px #827246; box-shadow: 1px 1px 3px 2px #827246; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #827246; -webkit-box-shadow: 1px 1px 3px 2px #827246; box-shadow:1px 1px 3px 2px #827246;">
Div content here</div>
This text has color #827246 on black background.
This text has color #827246 on white background.
This text has black color on #827246 background.
This text has white color on #827246 background.