HEX: #A59A4E
RGB: (165,154,78)
#A59A4E contains mainly red and green colors. Web safe color of #A59A4E is #999966 (or #996).
#A59A4E color RGB value is (165,154,78).
RGB: (165,154,78) (65%,60%,31%)
R 165 of 255 = 65%
G 154 of 255 = 60%
B 78 of 255 = 31%
R + G + B ~ 52%. #A59A4E is middle color (not dark and not light).
R + G + B =
165 + 154 + 78 = 397 (100%)
R 165 of 397 ~ 41.56%
G 154 of 397 ~ 38.79%
B 78 of 397 ~ 19.65%
#A59A4E color CMYK value is (0,7,53,35).
CMYK: (0,7,53,35) C0M7Y53K35 (0%,7%,53%,35%) (0.00/0.07/0.53/0.35)
A5 | 9A | 4E | |
---|---|---|---|
RGB | 165 | 154 | 78 |
HSL | 52° | 35.80% | 47.65% |
HSB/HSV | 52° | 52.73% | 64.71% |
CMYK | 0.00% | 6.67% | 52.73% |
35.29% |
HEX | A5 | 9A | 4E |
Decimal | 165 | 154 | 78 |
Binary | 10100101 | 10011010 | 1001110 |
Octal | 245 | 232 | 116 |
Examples of css and html codes for elements with #A59A4E color. Also use rgb(165,154,78) instead hex code.
.myTextColor { color: #A59A4E; }
<p style="color:#A59A4E">This sample text font color is #A59A4E.</p>
This text font color is #A59A4E.
.myBgColor { background-color: #A59A4E; }
<div style="background-color:#A59A4E">Inner text</div>
This div background color is #A59A4E.
.myBorderColor { border: 1px solid #A59A4E; }
<div style="border:3px solid #A59A4E">Div</div>
This div border color is #A59A4E.
.myOpacity80 { color: #A59A4E; opacity: 0.8; }
<p style="color:#A59A4E;opacity:0.8;">80%</p>
Text with #A59A4E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A59A4E;}
<p style="text-shadow: 3px 3px 1px #A59A4E">Text here.</p>
This text has shadow with #A59A4E color.
.textShadow {text-shadow: 3px 3px 1px #A59A4E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A59A4E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A59A4E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A59A4E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A59A4E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A59A4E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A59A4E; -webkit-box-shadow: 1px 1px 3px 2px #A59A4E; box-shadow: 1px 1px 3px 2px #A59A4E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A59A4E; -webkit-box-shadow: 1px 1px 3px 2px #A59A4E; box-shadow:1px 1px 3px 2px #A59A4E;">
Div content here</div>
This text has color #A59A4E on black background.
This text has color #A59A4E on white background.
This text has black color on #A59A4E background.
This text has white color on #A59A4E background.