HEX: #58752E
RGB: (88,117,46)
#58752E contains mainly red and green colors. Web safe color of #58752E is #666633 (or #663).
#58752E color RGB value is (88,117,46).
RGB: (88,117,46) (35%,46%,18%)
R 88 of 255 = 35%
G 117 of 255 = 46%
B 46 of 255 = 18%
R + G + B ~ 33%. #58752E is quite dark color.
R + G + B =
88 + 117 + 46 = 251 (100%)
R 88 of 251 ~ 35.06%
G 117 of 251 ~ 46.61%
B 46 of 251 ~ 18.33%
#58752E color CMYK value is (25,0,61,54).
CMYK: (25,0,61,54) C25M0Y61K54 (25%,0%,61%,54%) (0.25/0.00/0.61/0.54)
58 | 75 | 2E | |
---|---|---|---|
RGB | 88 | 117 | 46 |
HSL | 85° | 43.56% | 31.96% |
HSB/HSV | 85° | 60.68% | 45.88% |
CMYK | 24.79% | 0.00% | 60.68% |
54.12% |
HEX | 58 | 75 | 2E |
Decimal | 88 | 117 | 46 |
Binary | 1011000 | 1110101 | 101110 |
Octal | 130 | 165 | 56 |
Examples of css and html codes for elements with #58752E color. Also use rgb(88,117,46) instead hex code.
.myTextColor { color: #58752E; }
<p style="color:#58752E">This sample text font color is #58752E.</p>
This text font color is #58752E.
.myBgColor { background-color: #58752E; }
<div style="background-color:#58752E">Inner text</div>
This div background color is #58752E.
.myBorderColor { border: 1px solid #58752E; }
<div style="border:3px solid #58752E">Div</div>
This div border color is #58752E.
.myOpacity80 { color: #58752E; opacity: 0.8; }
<p style="color:#58752E;opacity:0.8;">80%</p>
Text with #58752E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58752E;}
<p style="text-shadow: 3px 3px 1px #58752E">Text here.</p>
This text has shadow with #58752E color.
.textShadow {text-shadow: 3px 3px 1px #58752E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58752E, 5px 5px 20px red">Text here.</p>
This text has shadow with #58752E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58752E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58752E, Direction=45, Strength=4)">Text</p>
This text has shadow with #58752E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58752E; -webkit-box-shadow: 1px 1px 3px 2px #58752E; box-shadow: 1px 1px 3px 2px #58752E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58752E; -webkit-box-shadow: 1px 1px 3px 2px #58752E; box-shadow:1px 1px 3px 2px #58752E;">
Div content here</div>
This text has color #58752E on black background.
This text has color #58752E on white background.
This text has black color on #58752E background.
This text has white color on #58752E background.