HEX: #85787F
RGB: (133,120,127)
#85787F contains red, green and blue colors in about the same proportion. Web safe color of #85787F is #996666 (or #966).
#85787F color RGB value is (133,120,127).
RGB: (133,120,127) (52%,47%,50%)
R 133 of 255 = 52%
G 120 of 255 = 47%
B 127 of 255 = 50%
R + G + B ~ 50%. #85787F is middle color (not dark and not light).
R + G + B =
133 + 120 + 127 = 380 (100%)
R 133 of 380 ~ 35%
G 120 of 380 ~ 31.58%
B 127 of 380 ~ 33.42%
#85787F color CMYK value is (0,10,5,48).
CMYK: (0,10,5,48) C0M10Y5K48 (0%,10%,5%,48%) (0.00/0.10/0.05/0.48)
85 | 78 | 7F | |
---|---|---|---|
RGB | 133 | 120 | 127 |
HSL | 328° | 5.14% | 49.61% |
HSB/HSV | 328° | 9.77% | 52.16% |
CMYK | 0.00% | 9.77% | 4.51% |
47.84% |
HEX | 85 | 78 | 7F |
Decimal | 133 | 120 | 127 |
Binary | 10000101 | 1111000 | 1111111 |
Octal | 205 | 170 | 177 |
Examples of css and html codes for elements with #85787F color. Also use rgb(133,120,127) instead hex code.
.myTextColor { color: #85787F; }
<p style="color:#85787F">This sample text font color is #85787F.</p>
This text font color is #85787F.
.myBgColor { background-color: #85787F; }
<div style="background-color:#85787F">Inner text</div>
This div background color is #85787F.
.myBorderColor { border: 1px solid #85787F; }
<div style="border:3px solid #85787F">Div</div>
This div border color is #85787F.
.myOpacity80 { color: #85787F; opacity: 0.8; }
<p style="color:#85787F;opacity:0.8;">80%</p>
Text with #85787F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #85787F;}
<p style="text-shadow: 3px 3px 1px #85787F">Text here.</p>
This text has shadow with #85787F color.
.textShadow {text-shadow: 3px 3px 1px #85787F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #85787F, 5px 5px 20px red">Text here.</p>
This text has shadow with #85787F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#85787F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#85787F, Direction=45, Strength=4)">Text</p>
This text has shadow with #85787F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #85787F; -webkit-box-shadow: 1px 1px 3px 2px #85787F; box-shadow: 1px 1px 3px 2px #85787F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #85787F; -webkit-box-shadow: 1px 1px 3px 2px #85787F; box-shadow:1px 1px 3px 2px #85787F;">
Div content here</div>
This text has color #85787F on black background.
This text has color #85787F on white background.
This text has black color on #85787F background.
This text has white color on #85787F background.