HEX: #AA685E
RGB: (170,104,94)
#AA685E contains mainly red color. Web safe color of #AA685E is #996666 (or #966).
#AA685E color RGB value is (170,104,94).
RGB: (170,104,94) (67%,41%,37%)
R 170 of 255 = 67%
G 104 of 255 = 41%
B 94 of 255 = 37%
R + G + B ~ 48%. #AA685E is middle color (not dark and not light).
R + G + B =
170 + 104 + 94 = 368 (100%)
R 170 of 368 ~ 46.2%
G 104 of 368 ~ 28.26%
B 94 of 368 ~ 25.54%
#AA685E color CMYK value is (0,39,45,33).
CMYK: (0,39,45,33) C0M39Y45K33 (0%,39%,45%,33%) (0.00/0.39/0.45/0.33)
AA | 68 | 5E | |
---|---|---|---|
RGB | 170 | 104 | 94 |
HSL | 8° | 30.89% | 51.76% |
HSB/HSV | 8° | 44.71% | 66.67% |
CMYK | 0.00% | 38.82% | 44.71% |
33.33% |
HEX | AA | 68 | 5E |
Decimal | 170 | 104 | 94 |
Binary | 10101010 | 1101000 | 1011110 |
Octal | 252 | 150 | 136 |
Examples of css and html codes for elements with #AA685E color. Also use rgb(170,104,94) instead hex code.
.myTextColor { color: #AA685E; }
<p style="color:#AA685E">This sample text font color is #AA685E.</p>
This text font color is #AA685E.
.myBgColor { background-color: #AA685E; }
<div style="background-color:#AA685E">Inner text</div>
This div background color is #AA685E.
.myBorderColor { border: 1px solid #AA685E; }
<div style="border:3px solid #AA685E">Div</div>
This div border color is #AA685E.
.myOpacity80 { color: #AA685E; opacity: 0.8; }
<p style="color:#AA685E;opacity:0.8;">80%</p>
Text with #AA685E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA685E;}
<p style="text-shadow: 3px 3px 1px #AA685E">Text here.</p>
This text has shadow with #AA685E color.
.textShadow {text-shadow: 3px 3px 1px #AA685E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA685E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA685E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA685E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA685E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA685E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA685E; -webkit-box-shadow: 1px 1px 3px 2px #AA685E; box-shadow: 1px 1px 3px 2px #AA685E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA685E; -webkit-box-shadow: 1px 1px 3px 2px #AA685E; box-shadow:1px 1px 3px 2px #AA685E;">
Div content here</div>
This text has color #AA685E on black background.
This text has color #AA685E on white background.
This text has black color on #AA685E background.
This text has white color on #AA685E background.