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