HEX: #AA738D
RGB: (170,115,141)
#AA738D contains red, green and blue colors in about the same proportion. Web safe color of #AA738D is #996699 (or #969).
#AA738D color RGB value is (170,115,141).
RGB: (170,115,141) (67%,45%,55%)
R 170 of 255 = 67%
G 115 of 255 = 45%
B 141 of 255 = 55%
R + G + B ~ 56%. #AA738D is middle color (not dark and not light).
R + G + B =
170 + 115 + 141 = 426 (100%)
R 170 of 426 ~ 39.91%
G 115 of 426 ~ 27%
B 141 of 426 ~ 33.1%
#AA738D color CMYK value is (0,32,17,33).
CMYK: (0,32,17,33) C0M32Y17K33 (0%,32%,17%,33%) (0.00/0.32/0.17/0.33)
AA | 73 | 8D | |
---|---|---|---|
RGB | 170 | 115 | 141 |
HSL | 332° | 24.44% | 55.88% |
HSB/HSV | 332° | 32.35% | 66.67% |
CMYK | 0.00% | 32.35% | 17.06% |
33.33% |
HEX | AA | 73 | 8D |
Decimal | 170 | 115 | 141 |
Binary | 10101010 | 1110011 | 10001101 |
Octal | 252 | 163 | 215 |
Examples of css and html codes for elements with #AA738D color. Also use rgb(170,115,141) instead hex code.
.myTextColor { color: #AA738D; }
<p style="color:#AA738D">This sample text font color is #AA738D.</p>
This text font color is #AA738D.
.myBgColor { background-color: #AA738D; }
<div style="background-color:#AA738D">Inner text</div>
This div background color is #AA738D.
.myBorderColor { border: 1px solid #AA738D; }
<div style="border:3px solid #AA738D">Div</div>
This div border color is #AA738D.
.myOpacity80 { color: #AA738D; opacity: 0.8; }
<p style="color:#AA738D;opacity:0.8;">80%</p>
Text with #AA738D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA738D;}
<p style="text-shadow: 3px 3px 1px #AA738D">Text here.</p>
This text has shadow with #AA738D color.
.textShadow {text-shadow: 3px 3px 1px #AA738D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA738D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA738D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA738D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA738D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA738D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA738D; -webkit-box-shadow: 1px 1px 3px 2px #AA738D; box-shadow: 1px 1px 3px 2px #AA738D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA738D; -webkit-box-shadow: 1px 1px 3px 2px #AA738D; box-shadow:1px 1px 3px 2px #AA738D;">
Div content here</div>
This text has color #AA738D on black background.
This text has color #AA738D on white background.
This text has black color on #AA738D background.
This text has white color on #AA738D background.