HEX: #827C4F
RGB: (130,124,79)
#827C4F contains red, green and blue colors in about the same proportion. Web safe color of #827C4F is #996666 (or #966).
#827C4F color RGB value is (130,124,79).
RGB: (130,124,79) (51%,49%,31%)
R 130 of 255 = 51%
G 124 of 255 = 49%
B 79 of 255 = 31%
R + G + B ~ 44%. #827C4F is middle color (not dark and not light).
R + G + B =
130 + 124 + 79 = 333 (100%)
R 130 of 333 ~ 39.04%
G 124 of 333 ~ 37.24%
B 79 of 333 ~ 23.72%
#827C4F color CMYK value is (0,5,39,49).
CMYK: (0,5,39,49) C0M5Y39K49 (0%,5%,39%,49%) (0.00/0.05/0.39/0.49)
82 | 7C | 4F | |
---|---|---|---|
RGB | 130 | 124 | 79 |
HSL | 53° | 24.40% | 40.98% |
HSB/HSV | 53° | 39.23% | 50.98% |
CMYK | 0.00% | 4.62% | 39.23% |
49.02% |
HEX | 82 | 7C | 4F |
Decimal | 130 | 124 | 79 |
Binary | 10000010 | 1111100 | 1001111 |
Octal | 202 | 174 | 117 |
Examples of css and html codes for elements with #827C4F color. Also use rgb(130,124,79) instead hex code.
.myTextColor { color: #827C4F; }
<p style="color:#827C4F">This sample text font color is #827C4F.</p>
This text font color is #827C4F.
.myBgColor { background-color: #827C4F; }
<div style="background-color:#827C4F">Inner text</div>
This div background color is #827C4F.
.myBorderColor { border: 1px solid #827C4F; }
<div style="border:3px solid #827C4F">Div</div>
This div border color is #827C4F.
.myOpacity80 { color: #827C4F; opacity: 0.8; }
<p style="color:#827C4F;opacity:0.8;">80%</p>
Text with #827C4F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #827C4F;}
<p style="text-shadow: 3px 3px 1px #827C4F">Text here.</p>
This text has shadow with #827C4F color.
.textShadow {text-shadow: 3px 3px 1px #827C4F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #827C4F, 5px 5px 20px red">Text here.</p>
This text has shadow with #827C4F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#827C4F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#827C4F, Direction=45, Strength=4)">Text</p>
This text has shadow with #827C4F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #827C4F; -webkit-box-shadow: 1px 1px 3px 2px #827C4F; box-shadow: 1px 1px 3px 2px #827C4F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #827C4F; -webkit-box-shadow: 1px 1px 3px 2px #827C4F; box-shadow:1px 1px 3px 2px #827C4F;">
Div content here</div>
This text has color #827C4F on black background.
This text has color #827C4F on white background.
This text has black color on #827C4F background.
This text has white color on #827C4F background.