HEX: #55584D
RGB: (85,88,77)
#55584D contains red, green and blue colors in about the same proportion. Web safe color of #55584D is #666633 (or #663).
#55584D color RGB value is (85,88,77).
RGB: (85,88,77) (33%,35%,30%)
R 85 of 255 = 33%
G 88 of 255 = 35%
B 77 of 255 = 30%
R + G + B ~ 33%. #55584D is quite dark color.
R + G + B =
85 + 88 + 77 = 250 (100%)
R 85 of 250 ~ 34%
G 88 of 250 ~ 35.2%
B 77 of 250 ~ 30.8%
#55584D color CMYK value is (3,0,13,65).
CMYK: (3,0,13,65) C3M0Y13K65 (3%,0%,13%,65%) (0.03/0.00/0.13/0.65)
55 | 58 | 4D | |
---|---|---|---|
RGB | 85 | 88 | 77 |
HSL | 76° | 6.67% | 32.35% |
HSB/HSV | 76° | 12.50% | 34.51% |
CMYK | 3.41% | 0.00% | 12.50% |
65.49% |
HEX | 55 | 58 | 4D |
Decimal | 85 | 88 | 77 |
Binary | 1010101 | 1011000 | 1001101 |
Octal | 125 | 130 | 115 |
Examples of css and html codes for elements with #55584D color. Also use rgb(85,88,77) instead hex code.
.myTextColor { color: #55584D; }
<p style="color:#55584D">This sample text font color is #55584D.</p>
This text font color is #55584D.
.myBgColor { background-color: #55584D; }
<div style="background-color:#55584D">Inner text</div>
This div background color is #55584D.
.myBorderColor { border: 1px solid #55584D; }
<div style="border:3px solid #55584D">Div</div>
This div border color is #55584D.
.myOpacity80 { color: #55584D; opacity: 0.8; }
<p style="color:#55584D;opacity:0.8;">80%</p>
Text with #55584D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #55584D;}
<p style="text-shadow: 3px 3px 1px #55584D">Text here.</p>
This text has shadow with #55584D color.
.textShadow {text-shadow: 3px 3px 1px #55584D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #55584D, 5px 5px 20px red">Text here.</p>
This text has shadow with #55584D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#55584D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#55584D, Direction=45, Strength=4)">Text</p>
This text has shadow with #55584D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #55584D; -webkit-box-shadow: 1px 1px 3px 2px #55584D; box-shadow: 1px 1px 3px 2px #55584D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #55584D; -webkit-box-shadow: 1px 1px 3px 2px #55584D; box-shadow:1px 1px 3px 2px #55584D;">
Div content here</div>
This text has color #55584D on black background.
This text has color #55584D on white background.
This text has black color on #55584D background.
This text has white color on #55584D background.