HEX: #554858
RGB: (85,72,88)
#554858 contains red, green and blue colors in about the same proportion. Web safe color of #554858 is #663366 (or #636).
#554858 color RGB value is (85,72,88).
RGB: (85,72,88) (33%,28%,35%)
R 85 of 255 = 33%
G 72 of 255 = 28%
B 88 of 255 = 35%
R + G + B ~ 32%. #554858 is quite dark color.
R + G + B =
85 + 72 + 88 = 245 (100%)
R 85 of 245 ~ 34.69%
G 72 of 245 ~ 29.39%
B 88 of 245 ~ 35.92%
#554858 color CMYK value is (3,18,0,65).
CMYK: (3,18,0,65) C3M18Y0K65 (3%,18%,0%,65%) (0.03/0.18/0.00/0.65)
55 | 48 | 58 | |
---|---|---|---|
RGB | 85 | 72 | 88 |
HSL | 289° | 10.00% | 31.37% |
HSB/HSV | 289° | 18.18% | 34.51% |
CMYK | 3.41% | 18.18% | 0.00% |
65.49% |
HEX | 55 | 48 | 58 |
Decimal | 85 | 72 | 88 |
Binary | 1010101 | 1001000 | 1011000 |
Octal | 125 | 110 | 130 |
Examples of css and html codes for elements with #554858 color. Also use rgb(85,72,88) instead hex code.
.myTextColor { color: #554858; }
<p style="color:#554858">This sample text font color is #554858.</p>
This text font color is #554858.
.myBgColor { background-color: #554858; }
<div style="background-color:#554858">Inner text</div>
This div background color is #554858.
.myBorderColor { border: 1px solid #554858; }
<div style="border:3px solid #554858">Div</div>
This div border color is #554858.
.myOpacity80 { color: #554858; opacity: 0.8; }
<p style="color:#554858;opacity:0.8;">80%</p>
Text with #554858 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #554858;}
<p style="text-shadow: 3px 3px 1px #554858">Text here.</p>
This text has shadow with #554858 color.
.textShadow {text-shadow: 3px 3px 1px #554858, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #554858, 5px 5px 20px red">Text here.</p>
This text has shadow with #554858 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#554858, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#554858, Direction=45, Strength=4)">Text</p>
This text has shadow with #554858 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #554858; -webkit-box-shadow: 1px 1px 3px 2px #554858; box-shadow: 1px 1px 3px 2px #554858; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #554858; -webkit-box-shadow: 1px 1px 3px 2px #554858; box-shadow:1px 1px 3px 2px #554858;">
Div content here</div>
This text has color #554858 on black background.
This text has color #554858 on white background.
This text has black color on #554858 background.
This text has white color on #554858 background.