HEX: #AA8988
RGB: (170,137,136)
#AA8988 contains red, green and blue colors in about the same proportion. Web safe color of #AA8988 is #999999 (or #999).
#AA8988 color RGB value is (170,137,136).
RGB: (170,137,136) (67%,54%,53%)
R 170 of 255 = 67%
G 137 of 255 = 54%
B 136 of 255 = 53%
R + G + B ~ 58%. #AA8988 is middle color (not dark and not light).
R + G + B =
170 + 137 + 136 = 443 (100%)
R 170 of 443 ~ 38.37%
G 137 of 443 ~ 30.93%
B 136 of 443 ~ 30.7%
#AA8988 color CMYK value is (0,19,20,33).
CMYK: (0,19,20,33) C0M19Y20K33 (0%,19%,20%,33%) (0.00/0.19/0.20/0.33)
AA | 89 | 88 | |
---|---|---|---|
RGB | 170 | 137 | 136 |
HSL | 2° | 16.67% | 60.00% |
HSB/HSV | 2° | 20.00% | 66.67% |
CMYK | 0.00% | 19.41% | 20.00% |
33.33% |
HEX | AA | 89 | 88 |
Decimal | 170 | 137 | 136 |
Binary | 10101010 | 10001001 | 10001000 |
Octal | 252 | 211 | 210 |
Examples of css and html codes for elements with #AA8988 color. Also use rgb(170,137,136) instead hex code.
.myTextColor { color: #AA8988; }
<p style="color:#AA8988">This sample text font color is #AA8988.</p>
This text font color is #AA8988.
.myBgColor { background-color: #AA8988; }
<div style="background-color:#AA8988">Inner text</div>
This div background color is #AA8988.
.myBorderColor { border: 1px solid #AA8988; }
<div style="border:3px solid #AA8988">Div</div>
This div border color is #AA8988.
.myOpacity80 { color: #AA8988; opacity: 0.8; }
<p style="color:#AA8988;opacity:0.8;">80%</p>
Text with #AA8988 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA8988;}
<p style="text-shadow: 3px 3px 1px #AA8988">Text here.</p>
This text has shadow with #AA8988 color.
.textShadow {text-shadow: 3px 3px 1px #AA8988, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA8988, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA8988 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA8988, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA8988, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA8988 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA8988; -webkit-box-shadow: 1px 1px 3px 2px #AA8988; box-shadow: 1px 1px 3px 2px #AA8988; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA8988; -webkit-box-shadow: 1px 1px 3px 2px #AA8988; box-shadow:1px 1px 3px 2px #AA8988;">
Div content here</div>
This text has color #AA8988 on black background.
This text has color #AA8988 on white background.
This text has black color on #AA8988 background.
This text has white color on #AA8988 background.