HEX: #58684F
RGB: (88,104,79)
#58684F contains red, green and blue colors in about the same proportion. Web safe color of #58684F is #666666 (or #666).
#58684F color RGB value is (88,104,79).
RGB: (88,104,79) (35%,41%,31%)
R 88 of 255 = 35%
G 104 of 255 = 41%
B 79 of 255 = 31%
R + G + B ~ 36%. #58684F is quite dark color.
R + G + B =
88 + 104 + 79 = 271 (100%)
R 88 of 271 ~ 32.47%
G 104 of 271 ~ 38.38%
B 79 of 271 ~ 29.15%
#58684F color CMYK value is (15,0,24,59).
CMYK: (15,0,24,59) C15M0Y24K59 (15%,0%,24%,59%) (0.15/0.00/0.24/0.59)
58 | 68 | 4F | |
---|---|---|---|
RGB | 88 | 104 | 79 |
HSL | 98° | 13.66% | 35.88% |
HSB/HSV | 98° | 24.04% | 40.78% |
CMYK | 15.38% | 0.00% | 24.04% |
59.22% |
HEX | 58 | 68 | 4F |
Decimal | 88 | 104 | 79 |
Binary | 1011000 | 1101000 | 1001111 |
Octal | 130 | 150 | 117 |
Examples of css and html codes for elements with #58684F color. Also use rgb(88,104,79) instead hex code.
.myTextColor { color: #58684F; }
<p style="color:#58684F">This sample text font color is #58684F.</p>
This text font color is #58684F.
.myBgColor { background-color: #58684F; }
<div style="background-color:#58684F">Inner text</div>
This div background color is #58684F.
.myBorderColor { border: 1px solid #58684F; }
<div style="border:3px solid #58684F">Div</div>
This div border color is #58684F.
.myOpacity80 { color: #58684F; opacity: 0.8; }
<p style="color:#58684F;opacity:0.8;">80%</p>
Text with #58684F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #58684F;}
<p style="text-shadow: 3px 3px 1px #58684F">Text here.</p>
This text has shadow with #58684F color.
.textShadow {text-shadow: 3px 3px 1px #58684F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #58684F, 5px 5px 20px red">Text here.</p>
This text has shadow with #58684F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#58684F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#58684F, Direction=45, Strength=4)">Text</p>
This text has shadow with #58684F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #58684F; -webkit-box-shadow: 1px 1px 3px 2px #58684F; box-shadow: 1px 1px 3px 2px #58684F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #58684F; -webkit-box-shadow: 1px 1px 3px 2px #58684F; box-shadow:1px 1px 3px 2px #58684F;">
Div content here</div>
This text has color #58684F on black background.
This text has color #58684F on white background.
This text has black color on #58684F background.
This text has white color on #58684F background.