HEX: #55617D
RGB: (85,97,125)
#55617D contains red, green and blue colors in about the same proportion. Web safe color of #55617D is #666666 (or #666).
#55617D color RGB value is (85,97,125).
RGB: (85,97,125) (33%,38%,49%)
R 85 of 255 = 33%
G 97 of 255 = 38%
B 125 of 255 = 49%
R + G + B ~ 40%. #55617D is middle color (not dark and not light).
R + G + B =
85 + 97 + 125 = 307 (100%)
R 85 of 307 ~ 27.69%
G 97 of 307 ~ 31.6%
B 125 of 307 ~ 40.72%
#55617D color CMYK value is (32,22,0,51).
CMYK: (32,22,0,51) C32M22Y0K51 (32%,22%,0%,51%) (0.32/0.22/0.00/0.51)
55 | 61 | 7D | |
---|---|---|---|
RGB | 85 | 97 | 125 |
HSL | 222° | 19.05% | 41.18% |
HSB/HSV | 222° | 32.00% | 49.02% |
CMYK | 32.00% | 22.40% | 0.00% |
50.98% |
HEX | 55 | 61 | 7D |
Decimal | 85 | 97 | 125 |
Binary | 1010101 | 1100001 | 1111101 |
Octal | 125 | 141 | 175 |
Examples of css and html codes for elements with #55617D color. Also use rgb(85,97,125) instead hex code.
.myTextColor { color: #55617D; }
<p style="color:#55617D">This sample text font color is #55617D.</p>
This text font color is #55617D.
.myBgColor { background-color: #55617D; }
<div style="background-color:#55617D">Inner text</div>
This div background color is #55617D.
.myBorderColor { border: 1px solid #55617D; }
<div style="border:3px solid #55617D">Div</div>
This div border color is #55617D.
.myOpacity80 { color: #55617D; opacity: 0.8; }
<p style="color:#55617D;opacity:0.8;">80%</p>
Text with #55617D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #55617D;}
<p style="text-shadow: 3px 3px 1px #55617D">Text here.</p>
This text has shadow with #55617D color.
.textShadow {text-shadow: 3px 3px 1px #55617D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #55617D, 5px 5px 20px red">Text here.</p>
This text has shadow with #55617D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#55617D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#55617D, Direction=45, Strength=4)">Text</p>
This text has shadow with #55617D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #55617D; -webkit-box-shadow: 1px 1px 3px 2px #55617D; box-shadow: 1px 1px 3px 2px #55617D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #55617D; -webkit-box-shadow: 1px 1px 3px 2px #55617D; box-shadow:1px 1px 3px 2px #55617D;">
Div content here</div>
This text has color #55617D on black background.
This text has color #55617D on white background.
This text has black color on #55617D background.
This text has white color on #55617D background.