HEX: #58672F
RGB: (88,103,47)
#58672F contains red, green and blue colors in about the same proportion. Web safe color of #58672F is #666633 (or #663).
#58672F color RGB value is (88,103,47).
RGB: (88,103,47) (35%,40%,18%)
R 88 of 255 = 35%
G 103 of 255 = 40%
B 47 of 255 = 18%
R + G + B ~ 31%. #58672F is quite dark color.
R + G + B =
88 + 103 + 47 = 238 (100%)
R 88 of 238 ~ 36.97%
G 103 of 238 ~ 43.28%
B 47 of 238 ~ 19.75%
#58672F color CMYK value is (15,0,54,60).
CMYK: (15,0,54,60) C15M0Y54K60 (15%,0%,54%,60%) (0.15/0.00/0.54/0.60)
58 | 67 | 2F | |
---|---|---|---|
RGB | 88 | 103 | 47 |
HSL | 76° | 37.33% | 29.41% |
HSB/HSV | 76° | 54.37% | 40.39% |
CMYK | 14.56% | 0.00% | 54.37% |
59.61% |
HEX | 58 | 67 | 2F |
Decimal | 88 | 103 | 47 |
Binary | 1011000 | 1100111 | 101111 |
Octal | 130 | 147 | 57 |
Examples of css and html codes for elements with #58672F color. Also use rgb(88,103,47) instead hex code.
.myTextColor { color: #58672F; }
<p style="color:#58672F">This sample text font color is #58672F.</p>
This text font color is #58672F.
.myBgColor { background-color: #58672F; }
<div style="background-color:#58672F">Inner text</div>
This div background color is #58672F.
.myBorderColor { border: 1px solid #58672F; }
<div style="border:3px solid #58672F">Div</div>
This div border color is #58672F.
.myOpacity80 { color: #58672F; opacity: 0.8; }
<p style="color:#58672F;opacity:0.8;">80%</p>
Text with #58672F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58672F;}
<p style="text-shadow: 3px 3px 1px #58672F">Text here.</p>
This text has shadow with #58672F color.
.textShadow {text-shadow: 3px 3px 1px #58672F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58672F, 5px 5px 20px red">Text here.</p>
This text has shadow with #58672F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58672F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58672F, Direction=45, Strength=4)">Text</p>
This text has shadow with #58672F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58672F; -webkit-box-shadow: 1px 1px 3px 2px #58672F; box-shadow: 1px 1px 3px 2px #58672F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58672F; -webkit-box-shadow: 1px 1px 3px 2px #58672F; box-shadow:1px 1px 3px 2px #58672F;">
Div content here</div>
This text has color #58672F on black background.
This text has color #58672F on white background.
This text has black color on #58672F background.
This text has white color on #58672F background.