HEX: #AA835A
RGB: (170,131,90)
#AA835A contains mainly red and green colors. Web safe color of #AA835A is #999966 (or #996).
#AA835A color RGB value is (170,131,90).
RGB: (170,131,90) (67%,51%,35%)
R 170 of 255 = 67%
G 131 of 255 = 51%
B 90 of 255 = 35%
R + G + B ~ 51%. #AA835A is middle color (not dark and not light).
R + G + B =
170 + 131 + 90 = 391 (100%)
R 170 of 391 ~ 43.48%
G 131 of 391 ~ 33.5%
B 90 of 391 ~ 23.02%
#AA835A color CMYK value is (0,23,47,33).
CMYK: (0,23,47,33) C0M23Y47K33 (0%,23%,47%,33%) (0.00/0.23/0.47/0.33)
AA | 83 | 5A | |
---|---|---|---|
RGB | 170 | 131 | 90 |
HSL | 31° | 32.00% | 50.98% |
HSB/HSV | 31° | 47.06% | 66.67% |
CMYK | 0.00% | 22.94% | 47.06% |
33.33% |
HEX | AA | 83 | 5A |
Decimal | 170 | 131 | 90 |
Binary | 10101010 | 10000011 | 1011010 |
Octal | 252 | 203 | 132 |
Examples of css and html codes for elements with #AA835A color. Also use rgb(170,131,90) instead hex code.
.myTextColor { color: #AA835A; }
<p style="color:#AA835A">This sample text font color is #AA835A.</p>
This text font color is #AA835A.
.myBgColor { background-color: #AA835A; }
<div style="background-color:#AA835A">Inner text</div>
This div background color is #AA835A.
.myBorderColor { border: 1px solid #AA835A; }
<div style="border:3px solid #AA835A">Div</div>
This div border color is #AA835A.
.myOpacity80 { color: #AA835A; opacity: 0.8; }
<p style="color:#AA835A;opacity:0.8;">80%</p>
Text with #AA835A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA835A;}
<p style="text-shadow: 3px 3px 1px #AA835A">Text here.</p>
This text has shadow with #AA835A color.
.textShadow {text-shadow: 3px 3px 1px #AA835A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA835A, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA835A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA835A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA835A, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA835A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA835A; -webkit-box-shadow: 1px 1px 3px 2px #AA835A; box-shadow: 1px 1px 3px 2px #AA835A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA835A; -webkit-box-shadow: 1px 1px 3px 2px #AA835A; box-shadow:1px 1px 3px 2px #AA835A;">
Div content here</div>
This text has color #AA835A on black background.
This text has color #AA835A on white background.
This text has black color on #AA835A background.
This text has white color on #AA835A background.