HEX: #A59B7C
RGB: (165,155,124)
#A59B7C contains red, green and blue colors in about the same proportion. Web safe color of #A59B7C is #999966 (or #996).
#A59B7C color RGB value is (165,155,124).
RGB: (165,155,124) (65%,61%,49%)
R 165 of 255 = 65%
G 155 of 255 = 61%
B 124 of 255 = 49%
R + G + B ~ 58%. #A59B7C is middle color (not dark and not light).
R + G + B =
165 + 155 + 124 = 444 (100%)
R 165 of 444 ~ 37.16%
G 155 of 444 ~ 34.91%
B 124 of 444 ~ 27.93%
#A59B7C color CMYK value is (0,6,25,35).
CMYK: (0,6,25,35) C0M6Y25K35 (0%,6%,25%,35%) (0.00/0.06/0.25/0.35)
A5 | 9B | 7C | |
---|---|---|---|
RGB | 165 | 155 | 124 |
HSL | 45° | 18.55% | 56.67% |
HSB/HSV | 45° | 24.85% | 64.71% |
CMYK | 0.00% | 6.06% | 24.85% |
35.29% |
HEX | A5 | 9B | 7C |
Decimal | 165 | 155 | 124 |
Binary | 10100101 | 10011011 | 1111100 |
Octal | 245 | 233 | 174 |
Examples of css and html codes for elements with #A59B7C color. Also use rgb(165,155,124) instead hex code.
.myTextColor { color: #A59B7C; }
<p style="color:#A59B7C">This sample text font color is #A59B7C.</p>
This text font color is #A59B7C.
.myBgColor { background-color: #A59B7C; }
<div style="background-color:#A59B7C">Inner text</div>
This div background color is #A59B7C.
.myBorderColor { border: 1px solid #A59B7C; }
<div style="border:3px solid #A59B7C">Div</div>
This div border color is #A59B7C.
.myOpacity80 { color: #A59B7C; opacity: 0.8; }
<p style="color:#A59B7C;opacity:0.8;">80%</p>
Text with #A59B7C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A59B7C;}
<p style="text-shadow: 3px 3px 1px #A59B7C">Text here.</p>
This text has shadow with #A59B7C color.
.textShadow {text-shadow: 3px 3px 1px #A59B7C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A59B7C, 5px 5px 20px red">Text here.</p>
This text has shadow with #A59B7C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A59B7C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A59B7C, Direction=45, Strength=4)">Text</p>
This text has shadow with #A59B7C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A59B7C; -webkit-box-shadow: 1px 1px 3px 2px #A59B7C; box-shadow: 1px 1px 3px 2px #A59B7C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A59B7C; -webkit-box-shadow: 1px 1px 3px 2px #A59B7C; box-shadow:1px 1px 3px 2px #A59B7C;">
Div content here</div>
This text has color #A59B7C on black background.
This text has color #A59B7C on white background.
This text has black color on #A59B7C background.
This text has white color on #A59B7C background.