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