HEX: #827750
RGB: (130,119,80)
#827750 contains red, green and blue colors in about the same proportion. Web safe color of #827750 is #996666 (or #966).
#827750 color RGB value is (130,119,80).
RGB: (130,119,80) (51%,47%,31%)
R 130 of 255 = 51%
G 119 of 255 = 47%
B 80 of 255 = 31%
R + G + B ~ 43%. #827750 is middle color (not dark and not light).
R + G + B =
130 + 119 + 80 = 329 (100%)
R 130 of 329 ~ 39.51%
G 119 of 329 ~ 36.17%
B 80 of 329 ~ 24.32%
#827750 color CMYK value is (0,8,38,49).
CMYK: (0,8,38,49) C0M8Y38K49 (0%,8%,38%,49%) (0.00/0.08/0.38/0.49)
82 | 77 | 50 | |
---|---|---|---|
RGB | 130 | 119 | 80 |
HSL | 47° | 23.81% | 41.18% |
HSB/HSV | 47° | 38.46% | 50.98% |
CMYK | 0.00% | 8.46% | 38.46% |
49.02% |
HEX | 82 | 77 | 50 |
Decimal | 130 | 119 | 80 |
Binary | 10000010 | 1110111 | 1010000 |
Octal | 202 | 167 | 120 |
Examples of css and html codes for elements with #827750 color. Also use rgb(130,119,80) instead hex code.
.myTextColor { color: #827750; }
<p style="color:#827750">This sample text font color is #827750.</p>
This text font color is #827750.
.myBgColor { background-color: #827750; }
<div style="background-color:#827750">Inner text</div>
This div background color is #827750.
.myBorderColor { border: 1px solid #827750; }
<div style="border:3px solid #827750">Div</div>
This div border color is #827750.
.myOpacity80 { color: #827750; opacity: 0.8; }
<p style="color:#827750;opacity:0.8;">80%</p>
Text with #827750 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #827750;}
<p style="text-shadow: 3px 3px 1px #827750">Text here.</p>
This text has shadow with #827750 color.
.textShadow {text-shadow: 3px 3px 1px #827750, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #827750, 5px 5px 20px red">Text here.</p>
This text has shadow with #827750 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#827750, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#827750, Direction=45, Strength=4)">Text</p>
This text has shadow with #827750 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #827750; -webkit-box-shadow: 1px 1px 3px 2px #827750; box-shadow: 1px 1px 3px 2px #827750; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #827750; -webkit-box-shadow: 1px 1px 3px 2px #827750; box-shadow:1px 1px 3px 2px #827750;">
Div content here</div>
This text has color #827750 on black background.
This text has color #827750 on white background.
This text has black color on #827750 background.
This text has white color on #827750 background.