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