HEX: #55585D
RGB: (85,88,93)
#55585D contains red, green and blue colors in about the same proportion. Web safe color of #55585D is #666666 (or #666).
#55585D color RGB value is (85,88,93).
RGB: (85,88,93) (33%,35%,36%)
R 85 of 255 = 33%
G 88 of 255 = 35%
B 93 of 255 = 36%
R + G + B ~ 35%. #55585D is quite dark color.
R + G + B =
85 + 88 + 93 = 266 (100%)
R 85 of 266 ~ 31.95%
G 88 of 266 ~ 33.08%
B 93 of 266 ~ 34.96%
#55585D color CMYK value is (9,5,0,64).
CMYK: (9,5,0,64) C9M5Y0K64 (9%,5%,0%,64%) (0.09/0.05/0.00/0.64)
55 | 58 | 5D | |
---|---|---|---|
RGB | 85 | 88 | 93 |
HSL | 218° | 4.49% | 34.90% |
HSB/HSV | 218° | 8.60% | 36.47% |
CMYK | 8.60% | 5.38% | 0.00% |
63.53% |
HEX | 55 | 58 | 5D |
Decimal | 85 | 88 | 93 |
Binary | 1010101 | 1011000 | 1011101 |
Octal | 125 | 130 | 135 |
Examples of css and html codes for elements with #55585D color. Also use rgb(85,88,93) instead hex code.
.myTextColor { color: #55585D; }
<p style="color:#55585D">This sample text font color is #55585D.</p>
This text font color is #55585D.
.myBgColor { background-color: #55585D; }
<div style="background-color:#55585D">Inner text</div>
This div background color is #55585D.
.myBorderColor { border: 1px solid #55585D; }
<div style="border:3px solid #55585D">Div</div>
This div border color is #55585D.
.myOpacity80 { color: #55585D; opacity: 0.8; }
<p style="color:#55585D;opacity:0.8;">80%</p>
Text with #55585D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #55585D;}
<p style="text-shadow: 3px 3px 1px #55585D">Text here.</p>
This text has shadow with #55585D color.
.textShadow {text-shadow: 3px 3px 1px #55585D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #55585D, 5px 5px 20px red">Text here.</p>
This text has shadow with #55585D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#55585D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#55585D, Direction=45, Strength=4)">Text</p>
This text has shadow with #55585D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #55585D; -webkit-box-shadow: 1px 1px 3px 2px #55585D; box-shadow: 1px 1px 3px 2px #55585D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #55585D; -webkit-box-shadow: 1px 1px 3px 2px #55585D; box-shadow:1px 1px 3px 2px #55585D;">
Div content here</div>
This text has color #55585D on black background.
This text has color #55585D on white background.
This text has black color on #55585D background.
This text has white color on #55585D background.