HEX: #58363B
RGB: (88,54,59)
#58363B contains red, green and blue colors in about the same proportion. Web safe color of #58363B is #663333 (or #633).
#58363B color RGB value is (88,54,59).
RGB: (88,54,59) (35%,21%,23%)
R 88 of 255 = 35%
G 54 of 255 = 21%
B 59 of 255 = 23%
R + G + B ~ 26%. #58363B is quite dark color.
R + G + B =
88 + 54 + 59 = 201 (100%)
R 88 of 201 ~ 43.78%
G 54 of 201 ~ 26.87%
B 59 of 201 ~ 29.35%
#58363B color CMYK value is (0,39,33,65).
CMYK: (0,39,33,65) C0M39Y33K65 (0%,39%,33%,65%) (0.00/0.39/0.33/0.65)
58 | 36 | 3B | |
---|---|---|---|
RGB | 88 | 54 | 59 |
HSL | 351° | 23.94% | 27.84% |
HSB/HSV | 351° | 38.64% | 34.51% |
CMYK | 0.00% | 38.64% | 32.95% |
65.49% |
HEX | 58 | 36 | 3B |
Decimal | 88 | 54 | 59 |
Binary | 1011000 | 110110 | 111011 |
Octal | 130 | 66 | 73 |
Examples of css and html codes for elements with #58363B color. Also use rgb(88,54,59) instead hex code.
.myTextColor { color: #58363B; }
<p style="color:#58363B">This sample text font color is #58363B.</p>
This text font color is #58363B.
.myBgColor { background-color: #58363B; }
<div style="background-color:#58363B">Inner text</div>
This div background color is #58363B.
.myBorderColor { border: 1px solid #58363B; }
<div style="border:3px solid #58363B">Div</div>
This div border color is #58363B.
.myOpacity80 { color: #58363B; opacity: 0.8; }
<p style="color:#58363B;opacity:0.8;">80%</p>
Text with #58363B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58363B;}
<p style="text-shadow: 3px 3px 1px #58363B">Text here.</p>
This text has shadow with #58363B color.
.textShadow {text-shadow: 3px 3px 1px #58363B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58363B, 5px 5px 20px red">Text here.</p>
This text has shadow with #58363B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58363B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58363B, Direction=45, Strength=4)">Text</p>
This text has shadow with #58363B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58363B; -webkit-box-shadow: 1px 1px 3px 2px #58363B; box-shadow: 1px 1px 3px 2px #58363B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58363B; -webkit-box-shadow: 1px 1px 3px 2px #58363B; box-shadow:1px 1px 3px 2px #58363B;">
Div content here</div>
This text has color #58363B on black background.
This text has color #58363B on white background.
This text has black color on #58363B background.
This text has white color on #58363B background.