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