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