HEX: #AA837E
RGB: (170,131,126)
#AA837E contains red, green and blue colors in about the same proportion. Web safe color of #AA837E is #999966 (or #996).
#AA837E color RGB value is (170,131,126).
RGB: (170,131,126) (67%,51%,49%)
R 170 of 255 = 67%
G 131 of 255 = 51%
B 126 of 255 = 49%
R + G + B ~ 56%. #AA837E is middle color (not dark and not light).
R + G + B =
170 + 131 + 126 = 427 (100%)
R 170 of 427 ~ 39.81%
G 131 of 427 ~ 30.68%
B 126 of 427 ~ 29.51%
#AA837E color CMYK value is (0,23,26,33).
CMYK: (0,23,26,33) C0M23Y26K33 (0%,23%,26%,33%) (0.00/0.23/0.26/0.33)
AA | 83 | 7E | |
---|---|---|---|
RGB | 170 | 131 | 126 |
HSL | 7° | 20.56% | 58.04% |
HSB/HSV | 7° | 25.88% | 66.67% |
CMYK | 0.00% | 22.94% | 25.88% |
33.33% |
HEX | AA | 83 | 7E |
Decimal | 170 | 131 | 126 |
Binary | 10101010 | 10000011 | 1111110 |
Octal | 252 | 203 | 176 |
Examples of css and html codes for elements with #AA837E color. Also use rgb(170,131,126) instead hex code.
.myTextColor { color: #AA837E; }
<p style="color:#AA837E">This sample text font color is #AA837E.</p>
This text font color is #AA837E.
.myBgColor { background-color: #AA837E; }
<div style="background-color:#AA837E">Inner text</div>
This div background color is #AA837E.
.myBorderColor { border: 1px solid #AA837E; }
<div style="border:3px solid #AA837E">Div</div>
This div border color is #AA837E.
.myOpacity80 { color: #AA837E; opacity: 0.8; }
<p style="color:#AA837E;opacity:0.8;">80%</p>
Text with #AA837E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA837E;}
<p style="text-shadow: 3px 3px 1px #AA837E">Text here.</p>
This text has shadow with #AA837E color.
.textShadow {text-shadow: 3px 3px 1px #AA837E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA837E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA837E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA837E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA837E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA837E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA837E; -webkit-box-shadow: 1px 1px 3px 2px #AA837E; box-shadow: 1px 1px 3px 2px #AA837E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA837E; -webkit-box-shadow: 1px 1px 3px 2px #AA837E; box-shadow:1px 1px 3px 2px #AA837E;">
Div content here</div>
This text has color #AA837E on black background.
This text has color #AA837E on white background.
This text has black color on #AA837E background.
This text has white color on #AA837E background.