HEX: #AA698A
RGB: (170,105,138)
#AA698A contains mainly red and blue colors. Web safe color of #AA698A is #996699 (or #969).
#AA698A color RGB value is (170,105,138).
RGB: (170,105,138) (67%,41%,54%)
R 170 of 255 = 67%
G 105 of 255 = 41%
B 138 of 255 = 54%
R + G + B ~ 54%. #AA698A is middle color (not dark and not light).
R + G + B =
170 + 105 + 138 = 413 (100%)
R 170 of 413 ~ 41.16%
G 105 of 413 ~ 25.42%
B 138 of 413 ~ 33.41%
#AA698A color CMYK value is (0,38,19,33).
CMYK: (0,38,19,33) C0M38Y19K33 (0%,38%,19%,33%) (0.00/0.38/0.19/0.33)
AA | 69 | 8A | |
---|---|---|---|
RGB | 170 | 105 | 138 |
HSL | 330° | 27.66% | 53.92% |
HSB/HSV | 330° | 38.24% | 66.67% |
CMYK | 0.00% | 38.24% | 18.82% |
33.33% |
HEX | AA | 69 | 8A |
Decimal | 170 | 105 | 138 |
Binary | 10101010 | 1101001 | 10001010 |
Octal | 252 | 151 | 212 |
Examples of css and html codes for elements with #AA698A color. Also use rgb(170,105,138) instead hex code.
.myTextColor { color: #AA698A; }
<p style="color:#AA698A">This sample text font color is #AA698A.</p>
This text font color is #AA698A.
.myBgColor { background-color: #AA698A; }
<div style="background-color:#AA698A">Inner text</div>
This div background color is #AA698A.
.myBorderColor { border: 1px solid #AA698A; }
<div style="border:3px solid #AA698A">Div</div>
This div border color is #AA698A.
.myOpacity80 { color: #AA698A; opacity: 0.8; }
<p style="color:#AA698A;opacity:0.8;">80%</p>
Text with #AA698A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA698A;}
<p style="text-shadow: 3px 3px 1px #AA698A">Text here.</p>
This text has shadow with #AA698A color.
.textShadow {text-shadow: 3px 3px 1px #AA698A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA698A, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA698A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA698A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA698A, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA698A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA698A; -webkit-box-shadow: 1px 1px 3px 2px #AA698A; box-shadow: 1px 1px 3px 2px #AA698A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA698A; -webkit-box-shadow: 1px 1px 3px 2px #AA698A; box-shadow:1px 1px 3px 2px #AA698A;">
Div content here</div>
This text has color #AA698A on black background.
This text has color #AA698A on white background.
This text has black color on #AA698A background.
This text has white color on #AA698A background.