HEX: #58595E
RGB: (88,89,94)
#58595E contains red, green and blue colors in about the same proportion. Web safe color of #58595E is #666666 (or #666).
#58595E color RGB value is (88,89,94).
RGB: (88,89,94) (35%,35%,37%)
R 88 of 255 = 35%
G 89 of 255 = 35%
B 94 of 255 = 37%
R + G + B ~ 36%. #58595E is quite dark color.
R + G + B =
88 + 89 + 94 = 271 (100%)
R 88 of 271 ~ 32.47%
G 89 of 271 ~ 32.84%
B 94 of 271 ~ 34.69%
#58595E color CMYK value is (6,5,0,63).
CMYK: (6,5,0,63) C6M5Y0K63 (6%,5%,0%,63%) (0.06/0.05/0.00/0.63)
58 | 59 | 5E | |
---|---|---|---|
RGB | 88 | 89 | 94 |
HSL | 230° | 3.30% | 35.69% |
HSB/HSV | 230° | 6.38% | 36.86% |
CMYK | 6.38% | 5.32% | 0.00% |
63.14% |
HEX | 58 | 59 | 5E |
Decimal | 88 | 89 | 94 |
Binary | 1011000 | 1011001 | 1011110 |
Octal | 130 | 131 | 136 |
Examples of css and html codes for elements with #58595E color. Also use rgb(88,89,94) instead hex code.
.myTextColor { color: #58595E; }
<p style="color:#58595E">This sample text font color is #58595E.</p>
This text font color is #58595E.
.myBgColor { background-color: #58595E; }
<div style="background-color:#58595E">Inner text</div>
This div background color is #58595E.
.myBorderColor { border: 1px solid #58595E; }
<div style="border:3px solid #58595E">Div</div>
This div border color is #58595E.
.myOpacity80 { color: #58595E; opacity: 0.8; }
<p style="color:#58595E;opacity:0.8;">80%</p>
Text with #58595E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58595E;}
<p style="text-shadow: 3px 3px 1px #58595E">Text here.</p>
This text has shadow with #58595E color.
.textShadow {text-shadow: 3px 3px 1px #58595E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58595E, 5px 5px 20px red">Text here.</p>
This text has shadow with #58595E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58595E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58595E, Direction=45, Strength=4)">Text</p>
This text has shadow with #58595E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58595E; -webkit-box-shadow: 1px 1px 3px 2px #58595E; box-shadow: 1px 1px 3px 2px #58595E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58595E; -webkit-box-shadow: 1px 1px 3px 2px #58595E; box-shadow:1px 1px 3px 2px #58595E;">
Div content here</div>
This text has color #58595E on black background.
This text has color #58595E on white background.
This text has black color on #58595E background.
This text has white color on #58595E background.