HEX: #827675
RGB: (130,118,117)
#827675 contains red, green and blue colors in about the same proportion. Web safe color of #827675 is #996666 (or #966).
#827675 color RGB value is (130,118,117).
RGB: (130,118,117) (51%,46%,46%)
R 130 of 255 = 51%
G 118 of 255 = 46%
B 117 of 255 = 46%
R + G + B ~ 48%. #827675 is middle color (not dark and not light).
R + G + B =
130 + 118 + 117 = 365 (100%)
R 130 of 365 ~ 35.62%
G 118 of 365 ~ 32.33%
B 117 of 365 ~ 32.05%
#827675 color CMYK value is (0,9,10,49).
CMYK: (0,9,10,49) C0M9Y10K49 (0%,9%,10%,49%) (0.00/0.09/0.10/0.49)
82 | 76 | 75 | |
---|---|---|---|
RGB | 130 | 118 | 117 |
HSL | 5° | 5.26% | 48.43% |
HSB/HSV | 5° | 10.00% | 50.98% |
CMYK | 0.00% | 9.23% | 10.00% |
49.02% |
HEX | 82 | 76 | 75 |
Decimal | 130 | 118 | 117 |
Binary | 10000010 | 1110110 | 1110101 |
Octal | 202 | 166 | 165 |
Examples of css and html codes for elements with #827675 color. Also use rgb(130,118,117) instead hex code.
.myTextColor { color: #827675; }
<p style="color:#827675">This sample text font color is #827675.</p>
This text font color is #827675.
.myBgColor { background-color: #827675; }
<div style="background-color:#827675">Inner text</div>
This div background color is #827675.
.myBorderColor { border: 1px solid #827675; }
<div style="border:3px solid #827675">Div</div>
This div border color is #827675.
.myOpacity80 { color: #827675; opacity: 0.8; }
<p style="color:#827675;opacity:0.8;">80%</p>
Text with #827675 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #827675;}
<p style="text-shadow: 3px 3px 1px #827675">Text here.</p>
This text has shadow with #827675 color.
.textShadow {text-shadow: 3px 3px 1px #827675, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #827675, 5px 5px 20px red">Text here.</p>
This text has shadow with #827675 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#827675, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#827675, Direction=45, Strength=4)">Text</p>
This text has shadow with #827675 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #827675; -webkit-box-shadow: 1px 1px 3px 2px #827675; box-shadow: 1px 1px 3px 2px #827675; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #827675; -webkit-box-shadow: 1px 1px 3px 2px #827675; box-shadow:1px 1px 3px 2px #827675;">
Div content here</div>
This text has color #827675 on black background.
This text has color #827675 on white background.
This text has black color on #827675 background.
This text has white color on #827675 background.