HEX: #A58959
RGB: (165,137,89)
#A58959 contains mainly red and green colors. Web safe color of #A58959 is #999966 (or #996).
#A58959 color RGB value is (165,137,89).
RGB: (165,137,89) (65%,54%,35%)
R 165 of 255 = 65%
G 137 of 255 = 54%
B 89 of 255 = 35%
R + G + B ~ 51%. #A58959 is middle color (not dark and not light).
R + G + B =
165 + 137 + 89 = 391 (100%)
R 165 of 391 ~ 42.2%
G 137 of 391 ~ 35.04%
B 89 of 391 ~ 22.76%
#A58959 color CMYK value is (0,17,46,35).
CMYK: (0,17,46,35) C0M17Y46K35 (0%,17%,46%,35%) (0.00/0.17/0.46/0.35)
A5 | 89 | 59 | |
---|---|---|---|
RGB | 165 | 137 | 89 |
HSL | 38° | 29.92% | 49.80% |
HSB/HSV | 38° | 46.06% | 64.71% |
CMYK | 0.00% | 16.97% | 46.06% |
35.29% |
HEX | A5 | 89 | 59 |
Decimal | 165 | 137 | 89 |
Binary | 10100101 | 10001001 | 1011001 |
Octal | 245 | 211 | 131 |
Examples of css and html codes for elements with #A58959 color. Also use rgb(165,137,89) instead hex code.
.myTextColor { color: #A58959; }
<p style="color:#A58959">This sample text font color is #A58959.</p>
This text font color is #A58959.
.myBgColor { background-color: #A58959; }
<div style="background-color:#A58959">Inner text</div>
This div background color is #A58959.
.myBorderColor { border: 1px solid #A58959; }
<div style="border:3px solid #A58959">Div</div>
This div border color is #A58959.
.myOpacity80 { color: #A58959; opacity: 0.8; }
<p style="color:#A58959;opacity:0.8;">80%</p>
Text with #A58959 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A58959;}
<p style="text-shadow: 3px 3px 1px #A58959">Text here.</p>
This text has shadow with #A58959 color.
.textShadow {text-shadow: 3px 3px 1px #A58959, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A58959, 5px 5px 20px red">Text here.</p>
This text has shadow with #A58959 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A58959, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A58959, Direction=45, Strength=4)">Text</p>
This text has shadow with #A58959 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A58959; -webkit-box-shadow: 1px 1px 3px 2px #A58959; box-shadow: 1px 1px 3px 2px #A58959; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A58959; -webkit-box-shadow: 1px 1px 3px 2px #A58959; box-shadow:1px 1px 3px 2px #A58959;">
Div content here</div>
This text has color #A58959 on black background.
This text has color #A58959 on white background.
This text has black color on #A58959 background.
This text has white color on #A58959 background.