HEX: #A9A9AB
RGB: (169,169,171)
#A9A9AB contains red, green and blue colors in about the same proportion. Web safe color of #A9A9AB is #999999 (or #999).
#A9A9AB color RGB value is (169,169,171).
RGB: (169,169,171) (66%,66%,67%)
R 169 of 255 = 66%
G 169 of 255 = 66%
B 171 of 255 = 67%
R + G + B ~ 66%. #A9A9AB is quite light color.
R + G + B =
169 + 169 + 171 = 509 (100%)
R 169 of 509 ~ 33.2%
G 169 of 509 ~ 33.2%
B 171 of 509 ~ 33.6%
#A9A9AB color CMYK value is (1,1,0,33).
CMYK: (1,1,0,33) C1M1Y0K33 (1%,1%,0%,33%) (0.01/0.01/0.00/0.33)
A9 | A9 | AB | |
---|---|---|---|
RGB | 169 | 169 | 171 |
HSL | 240° | 1.18% | 66.67% |
HSB/HSV | 240° | 1.17% | 67.06% |
CMYK | 1.17% | 1.17% | 0.00% |
32.94% |
HEX | A9 | A9 | AB |
Decimal | 169 | 169 | 171 |
Binary | 10101001 | 10101001 | 10101011 |
Octal | 251 | 251 | 253 |
Examples of css and html codes for elements with #A9A9AB color. Also use rgb(169,169,171) instead hex code.
.myTextColor { color: #A9A9AB; }
<p style="color:#A9A9AB">This sample text font color is #A9A9AB.</p>
This text font color is #A9A9AB.
.myBgColor { background-color: #A9A9AB; }
<div style="background-color:#A9A9AB">Inner text</div>
This div background color is #A9A9AB.
.myBorderColor { border: 1px solid #A9A9AB; }
<div style="border:3px solid #A9A9AB">Div</div>
This div border color is #A9A9AB.
.myOpacity80 { color: #A9A9AB; opacity: 0.8; }
<p style="color:#A9A9AB;opacity:0.8;">80%</p>
Text with #A9A9AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9A9AB;}
<p style="text-shadow: 3px 3px 1px #A9A9AB">Text here.</p>
This text has shadow with #A9A9AB color.
.textShadow {text-shadow: 3px 3px 1px #A9A9AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9A9AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9A9AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9A9AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9A9AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9A9AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9A9AB; -webkit-box-shadow: 1px 1px 3px 2px #A9A9AB; box-shadow: 1px 1px 3px 2px #A9A9AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9A9AB; -webkit-box-shadow: 1px 1px 3px 2px #A9A9AB; box-shadow:1px 1px 3px 2px #A9A9AB;">
Div content here</div>
This text has color #A9A9AB on black background.
This text has color #A9A9AB on white background.
This text has black color on #A9A9AB background.
This text has white color on #A9A9AB background.