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