HEX: #876265
RGB: (135,98,101)
#876265 contains red, green and blue colors in about the same proportion. Web safe color of #876265 is #996666 (or #966).
#876265 color RGB value is (135,98,101).
RGB: (135,98,101) (53%,38%,40%)
R 135 of 255 = 53%
G 98 of 255 = 38%
B 101 of 255 = 40%
R + G + B ~ 44%. #876265 is middle color (not dark and not light).
R + G + B =
135 + 98 + 101 = 334 (100%)
R 135 of 334 ~ 40.42%
G 98 of 334 ~ 29.34%
B 101 of 334 ~ 30.24%
#876265 color CMYK value is (0,27,25,47).
CMYK: (0,27,25,47) C0M27Y25K47 (0%,27%,25%,47%) (0.00/0.27/0.25/0.47)
87 | 62 | 65 | |
---|---|---|---|
RGB | 135 | 98 | 101 |
HSL | 355° | 15.88% | 45.69% |
HSB/HSV | 355° | 27.41% | 52.94% |
CMYK | 0.00% | 27.41% | 25.19% |
47.06% |
HEX | 87 | 62 | 65 |
Decimal | 135 | 98 | 101 |
Binary | 10000111 | 1100010 | 1100101 |
Octal | 207 | 142 | 145 |
Examples of css and html codes for elements with #876265 color. Also use rgb(135,98,101) instead hex code.
.myTextColor { color: #876265; }
<p style="color:#876265">This sample text font color is #876265.</p>
This text font color is #876265.
.myBgColor { background-color: #876265; }
<div style="background-color:#876265">Inner text</div>
This div background color is #876265.
.myBorderColor { border: 1px solid #876265; }
<div style="border:3px solid #876265">Div</div>
This div border color is #876265.
.myOpacity80 { color: #876265; opacity: 0.8; }
<p style="color:#876265;opacity:0.8;">80%</p>
Text with #876265 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #876265;}
<p style="text-shadow: 3px 3px 1px #876265">Text here.</p>
This text has shadow with #876265 color.
.textShadow {text-shadow: 3px 3px 1px #876265, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #876265, 5px 5px 20px red">Text here.</p>
This text has shadow with #876265 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#876265, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#876265, Direction=45, Strength=4)">Text</p>
This text has shadow with #876265 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #876265; -webkit-box-shadow: 1px 1px 3px 2px #876265; box-shadow: 1px 1px 3px 2px #876265; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #876265; -webkit-box-shadow: 1px 1px 3px 2px #876265; box-shadow:1px 1px 3px 2px #876265;">
Div content here</div>
This text has color #876265 on black background.
This text has color #876265 on white background.
This text has black color on #876265 background.
This text has white color on #876265 background.