HEX: #A59B52
RGB: (165,155,82)
#A59B52 contains mainly red and green colors. Web safe color of #A59B52 is #999966 (or #996).
#A59B52 color RGB value is (165,155,82).
RGB: (165,155,82) (65%,61%,32%)
R 165 of 255 = 65%
G 155 of 255 = 61%
B 82 of 255 = 32%
R + G + B ~ 53%. #A59B52 is middle color (not dark and not light).
R + G + B =
165 + 155 + 82 = 402 (100%)
R 165 of 402 ~ 41.04%
G 155 of 402 ~ 38.56%
B 82 of 402 ~ 20.4%
#A59B52 color CMYK value is (0,6,50,35).
CMYK: (0,6,50,35) C0M6Y50K35 (0%,6%,50%,35%) (0.00/0.06/0.50/0.35)
A5 | 9B | 52 | |
---|---|---|---|
RGB | 165 | 155 | 82 |
HSL | 53° | 33.60% | 48.43% |
HSB/HSV | 53° | 50.30% | 64.71% |
CMYK | 0.00% | 6.06% | 50.30% |
35.29% |
HEX | A5 | 9B | 52 |
Decimal | 165 | 155 | 82 |
Binary | 10100101 | 10011011 | 1010010 |
Octal | 245 | 233 | 122 |
Examples of css and html codes for elements with #A59B52 color. Also use rgb(165,155,82) instead hex code.
.myTextColor { color: #A59B52; }
<p style="color:#A59B52">This sample text font color is #A59B52.</p>
This text font color is #A59B52.
.myBgColor { background-color: #A59B52; }
<div style="background-color:#A59B52">Inner text</div>
This div background color is #A59B52.
.myBorderColor { border: 1px solid #A59B52; }
<div style="border:3px solid #A59B52">Div</div>
This div border color is #A59B52.
.myOpacity80 { color: #A59B52; opacity: 0.8; }
<p style="color:#A59B52;opacity:0.8;">80%</p>
Text with #A59B52 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A59B52;}
<p style="text-shadow: 3px 3px 1px #A59B52">Text here.</p>
This text has shadow with #A59B52 color.
.textShadow {text-shadow: 3px 3px 1px #A59B52, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A59B52, 5px 5px 20px red">Text here.</p>
This text has shadow with #A59B52 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A59B52, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A59B52, Direction=45, Strength=4)">Text</p>
This text has shadow with #A59B52 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A59B52; -webkit-box-shadow: 1px 1px 3px 2px #A59B52; box-shadow: 1px 1px 3px 2px #A59B52; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A59B52; -webkit-box-shadow: 1px 1px 3px 2px #A59B52; box-shadow:1px 1px 3px 2px #A59B52;">
Div content here</div>
This text has color #A59B52 on black background.
This text has color #A59B52 on white background.
This text has black color on #A59B52 background.
This text has white color on #A59B52 background.