HEX: #58567D
RGB: (88,86,125)
#58567D contains red, green and blue colors in about the same proportion. Web safe color of #58567D is #666666 (or #666).
#58567D color RGB value is (88,86,125).
RGB: (88,86,125) (35%,34%,49%)
R 88 of 255 = 35%
G 86 of 255 = 34%
B 125 of 255 = 49%
R + G + B ~ 39%. #58567D is quite dark color.
R + G + B =
88 + 86 + 125 = 299 (100%)
R 88 of 299 ~ 29.43%
G 86 of 299 ~ 28.76%
B 125 of 299 ~ 41.81%
#58567D color CMYK value is (30,31,0,51).
CMYK: (30,31,0,51) C30M31Y0K51 (30%,31%,0%,51%) (0.30/0.31/0.00/0.51)
58 | 56 | 7D | |
---|---|---|---|
RGB | 88 | 86 | 125 |
HSL | 243° | 18.48% | 41.37% |
HSB/HSV | 243° | 31.20% | 49.02% |
CMYK | 29.60% | 31.20% | 0.00% |
50.98% |
HEX | 58 | 56 | 7D |
Decimal | 88 | 86 | 125 |
Binary | 1011000 | 1010110 | 1111101 |
Octal | 130 | 126 | 175 |
Examples of css and html codes for elements with #58567D color. Also use rgb(88,86,125) instead hex code.
.myTextColor { color: #58567D; }
<p style="color:#58567D">This sample text font color is #58567D.</p>
This text font color is #58567D.
.myBgColor { background-color: #58567D; }
<div style="background-color:#58567D">Inner text</div>
This div background color is #58567D.
.myBorderColor { border: 1px solid #58567D; }
<div style="border:3px solid #58567D">Div</div>
This div border color is #58567D.
.myOpacity80 { color: #58567D; opacity: 0.8; }
<p style="color:#58567D;opacity:0.8;">80%</p>
Text with #58567D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58567D;}
<p style="text-shadow: 3px 3px 1px #58567D">Text here.</p>
This text has shadow with #58567D color.
.textShadow {text-shadow: 3px 3px 1px #58567D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58567D, 5px 5px 20px red">Text here.</p>
This text has shadow with #58567D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58567D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58567D, Direction=45, Strength=4)">Text</p>
This text has shadow with #58567D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58567D; -webkit-box-shadow: 1px 1px 3px 2px #58567D; box-shadow: 1px 1px 3px 2px #58567D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58567D; -webkit-box-shadow: 1px 1px 3px 2px #58567D; box-shadow:1px 1px 3px 2px #58567D;">
Div content here</div>
This text has color #58567D on black background.
This text has color #58567D on white background.
This text has black color on #58567D background.
This text has white color on #58567D background.