HEX: #AA598B
RGB: (170,89,139)
#AA598B contains mainly red and blue colors. Web safe color of #AA598B is #996699 (or #969).
#AA598B color RGB value is (170,89,139).
RGB: (170,89,139) (67%,35%,55%)
R 170 of 255 = 67%
G 89 of 255 = 35%
B 139 of 255 = 55%
R + G + B ~ 52%. #AA598B is middle color (not dark and not light).
R + G + B =
170 + 89 + 139 = 398 (100%)
R 170 of 398 ~ 42.71%
G 89 of 398 ~ 22.36%
B 139 of 398 ~ 34.92%
#AA598B color CMYK value is (0,48,18,33).
CMYK: (0,48,18,33) C0M48Y18K33 (0%,48%,18%,33%) (0.00/0.48/0.18/0.33)
AA | 59 | 8B | |
---|---|---|---|
RGB | 170 | 89 | 139 |
HSL | 323° | 32.27% | 50.78% |
HSB/HSV | 323° | 47.65% | 66.67% |
CMYK | 0.00% | 47.65% | 18.24% |
33.33% |
HEX | AA | 59 | 8B |
Decimal | 170 | 89 | 139 |
Binary | 10101010 | 1011001 | 10001011 |
Octal | 252 | 131 | 213 |
Examples of css and html codes for elements with #AA598B color. Also use rgb(170,89,139) instead hex code.
.myTextColor { color: #AA598B; }
<p style="color:#AA598B">This sample text font color is #AA598B.</p>
This text font color is #AA598B.
.myBgColor { background-color: #AA598B; }
<div style="background-color:#AA598B">Inner text</div>
This div background color is #AA598B.
.myBorderColor { border: 1px solid #AA598B; }
<div style="border:3px solid #AA598B">Div</div>
This div border color is #AA598B.
.myOpacity80 { color: #AA598B; opacity: 0.8; }
<p style="color:#AA598B;opacity:0.8;">80%</p>
Text with #AA598B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA598B;}
<p style="text-shadow: 3px 3px 1px #AA598B">Text here.</p>
This text has shadow with #AA598B color.
.textShadow {text-shadow: 3px 3px 1px #AA598B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA598B, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA598B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA598B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA598B, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA598B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA598B; -webkit-box-shadow: 1px 1px 3px 2px #AA598B; box-shadow: 1px 1px 3px 2px #AA598B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA598B; -webkit-box-shadow: 1px 1px 3px 2px #AA598B; box-shadow:1px 1px 3px 2px #AA598B;">
Div content here</div>
This text has color #AA598B on black background.
This text has color #AA598B on white background.
This text has black color on #AA598B background.
This text has white color on #AA598B background.