HEX: #55587F
RGB: (85,88,127)
#55587F contains red, green and blue colors in about the same proportion. Web safe color of #55587F is #666666 (or #666).
#55587F color RGB value is (85,88,127).
RGB: (85,88,127) (33%,35%,50%)
R 85 of 255 = 33%
G 88 of 255 = 35%
B 127 of 255 = 50%
R + G + B ~ 39%. #55587F is quite dark color.
R + G + B =
85 + 88 + 127 = 300 (100%)
R 85 of 300 ~ 28.33%
G 88 of 300 ~ 29.33%
B 127 of 300 ~ 42.33%
#55587F color CMYK value is (33,31,0,50).
CMYK: (33,31,0,50) C33M31Y0K50 (33%,31%,0%,50%) (0.33/0.31/0.00/0.50)
55 | 58 | 7F | |
---|---|---|---|
RGB | 85 | 88 | 127 |
HSL | 236° | 19.81% | 41.57% |
HSB/HSV | 236° | 33.07% | 49.80% |
CMYK | 33.07% | 30.71% | 0.00% |
50.20% |
HEX | 55 | 58 | 7F |
Decimal | 85 | 88 | 127 |
Binary | 1010101 | 1011000 | 1111111 |
Octal | 125 | 130 | 177 |
Examples of css and html codes for elements with #55587F color. Also use rgb(85,88,127) instead hex code.
.myTextColor { color: #55587F; }
<p style="color:#55587F">This sample text font color is #55587F.</p>
This text font color is #55587F.
.myBgColor { background-color: #55587F; }
<div style="background-color:#55587F">Inner text</div>
This div background color is #55587F.
.myBorderColor { border: 1px solid #55587F; }
<div style="border:3px solid #55587F">Div</div>
This div border color is #55587F.
.myOpacity80 { color: #55587F; opacity: 0.8; }
<p style="color:#55587F;opacity:0.8;">80%</p>
Text with #55587F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #55587F;}
<p style="text-shadow: 3px 3px 1px #55587F">Text here.</p>
This text has shadow with #55587F color.
.textShadow {text-shadow: 3px 3px 1px #55587F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #55587F, 5px 5px 20px red">Text here.</p>
This text has shadow with #55587F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#55587F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#55587F, Direction=45, Strength=4)">Text</p>
This text has shadow with #55587F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #55587F; -webkit-box-shadow: 1px 1px 3px 2px #55587F; box-shadow: 1px 1px 3px 2px #55587F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #55587F; -webkit-box-shadow: 1px 1px 3px 2px #55587F; box-shadow:1px 1px 3px 2px #55587F;">
Div content here</div>
This text has color #55587F on black background.
This text has color #55587F on white background.
This text has black color on #55587F background.
This text has white color on #55587F background.