HEX: #59682F
RGB: (89,104,47)
#59682F contains red, green and blue colors in about the same proportion. Web safe color of #59682F is #666633 (or #663).
#59682F color RGB value is (89,104,47).
RGB: (89,104,47) (35%,41%,18%)
R 89 of 255 = 35%
G 104 of 255 = 41%
B 47 of 255 = 18%
R + G + B ~ 31%. #59682F is quite dark color.
R + G + B =
89 + 104 + 47 = 240 (100%)
R 89 of 240 ~ 37.08%
G 104 of 240 ~ 43.33%
B 47 of 240 ~ 19.58%
#59682F color CMYK value is (14,0,55,59).
CMYK: (14,0,55,59) C14M0Y55K59 (14%,0%,55%,59%) (0.14/0.00/0.55/0.59)
59 | 68 | 2F | |
---|---|---|---|
RGB | 89 | 104 | 47 |
HSL | 76° | 37.75% | 29.61% |
HSB/HSV | 76° | 54.81% | 40.78% |
CMYK | 14.42% | 0.00% | 54.81% |
59.22% |
HEX | 59 | 68 | 2F |
Decimal | 89 | 104 | 47 |
Binary | 1011001 | 1101000 | 101111 |
Octal | 131 | 150 | 57 |
Examples of css and html codes for elements with #59682F color. Also use rgb(89,104,47) instead hex code.
.myTextColor { color: #59682F; }
<p style="color:#59682F">This sample text font color is #59682F.</p>
This text font color is #59682F.
.myBgColor { background-color: #59682F; }
<div style="background-color:#59682F">Inner text</div>
This div background color is #59682F.
.myBorderColor { border: 1px solid #59682F; }
<div style="border:3px solid #59682F">Div</div>
This div border color is #59682F.
.myOpacity80 { color: #59682F; opacity: 0.8; }
<p style="color:#59682F;opacity:0.8;">80%</p>
Text with #59682F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #59682F;}
<p style="text-shadow: 3px 3px 1px #59682F">Text here.</p>
This text has shadow with #59682F color.
.textShadow {text-shadow: 3px 3px 1px #59682F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #59682F, 5px 5px 20px red">Text here.</p>
This text has shadow with #59682F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#59682F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#59682F, Direction=45, Strength=4)">Text</p>
This text has shadow with #59682F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #59682F; -webkit-box-shadow: 1px 1px 3px 2px #59682F; box-shadow: 1px 1px 3px 2px #59682F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #59682F; -webkit-box-shadow: 1px 1px 3px 2px #59682F; box-shadow:1px 1px 3px 2px #59682F;">
Div content here</div>
This text has color #59682F on black background.
This text has color #59682F on white background.
This text has black color on #59682F background.
This text has white color on #59682F background.