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