HEX: #A9959D
RGB: (169,149,157)
#A9959D contains red, green and blue colors in about the same proportion. Web safe color of #A9959D is #999999 (or #999).
#A9959D color RGB value is (169,149,157).
RGB: (169,149,157) (66%,58%,62%)
R 169 of 255 = 66%
G 149 of 255 = 58%
B 157 of 255 = 62%
R + G + B ~ 62%. #A9959D is quite light color.
R + G + B =
169 + 149 + 157 = 475 (100%)
R 169 of 475 ~ 35.58%
G 149 of 475 ~ 31.37%
B 157 of 475 ~ 33.05%
#A9959D color CMYK value is (0,12,7,34).
CMYK: (0,12,7,34) C0M12Y7K34 (0%,12%,7%,34%) (0.00/0.12/0.07/0.34)
A9 | 95 | 9D | |
---|---|---|---|
RGB | 169 | 149 | 157 |
HSL | 336° | 10.42% | 62.35% |
HSB/HSV | 336° | 11.83% | 66.27% |
CMYK | 0.00% | 11.83% | 7.10% |
33.73% |
HEX | A9 | 95 | 9D |
Decimal | 169 | 149 | 157 |
Binary | 10101001 | 10010101 | 10011101 |
Octal | 251 | 225 | 235 |
Examples of css and html codes for elements with #A9959D color. Also use rgb(169,149,157) instead hex code.
.myTextColor { color: #A9959D; }
<p style="color:#A9959D">This sample text font color is #A9959D.</p>
This text font color is #A9959D.
.myBgColor { background-color: #A9959D; }
<div style="background-color:#A9959D">Inner text</div>
This div background color is #A9959D.
.myBorderColor { border: 1px solid #A9959D; }
<div style="border:3px solid #A9959D">Div</div>
This div border color is #A9959D.
.myOpacity80 { color: #A9959D; opacity: 0.8; }
<p style="color:#A9959D;opacity:0.8;">80%</p>
Text with #A9959D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A9959D;}
<p style="text-shadow: 3px 3px 1px #A9959D">Text here.</p>
This text has shadow with #A9959D color.
.textShadow {text-shadow: 3px 3px 1px #A9959D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A9959D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A9959D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A9959D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A9959D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A9959D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A9959D; -webkit-box-shadow: 1px 1px 3px 2px #A9959D; box-shadow: 1px 1px 3px 2px #A9959D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A9959D; -webkit-box-shadow: 1px 1px 3px 2px #A9959D; box-shadow:1px 1px 3px 2px #A9959D;">
Div content here</div>
This text has color #A9959D on black background.
This text has color #A9959D on white background.
This text has black color on #A9959D background.
This text has white color on #A9959D background.