HEX: #A993A5
RGB: (169,147,165)
#A993A5 contains red, green and blue colors in about the same proportion. Web safe color of #A993A5 is #999999 (or #999).
#A993A5 color RGB value is (169,147,165).
RGB: (169,147,165) (66%,58%,65%)
R 169 of 255 = 66%
G 147 of 255 = 58%
B 165 of 255 = 65%
R + G + B ~ 63%. #A993A5 is quite light color.
R + G + B =
169 + 147 + 165 = 481 (100%)
R 169 of 481 ~ 35.14%
G 147 of 481 ~ 30.56%
B 165 of 481 ~ 34.3%
#A993A5 color CMYK value is (0,13,2,34).
CMYK: (0,13,2,34) C0M13Y2K34 (0%,13%,2%,34%) (0.00/0.13/0.02/0.34)
A9 | 93 | A5 | |
---|---|---|---|
RGB | 169 | 147 | 165 |
HSL | 311° | 11.34% | 61.96% |
HSB/HSV | 311° | 13.02% | 66.27% |
CMYK | 0.00% | 13.02% | 2.37% |
33.73% |
HEX | A9 | 93 | A5 |
Decimal | 169 | 147 | 165 |
Binary | 10101001 | 10010011 | 10100101 |
Octal | 251 | 223 | 245 |
Examples of css and html codes for elements with #A993A5 color. Also use rgb(169,147,165) instead hex code.
.myTextColor { color: #A993A5; }
<p style="color:#A993A5">This sample text font color is #A993A5.</p>
This text font color is #A993A5.
.myBgColor { background-color: #A993A5; }
<div style="background-color:#A993A5">Inner text</div>
This div background color is #A993A5.
.myBorderColor { border: 1px solid #A993A5; }
<div style="border:3px solid #A993A5">Div</div>
This div border color is #A993A5.
.myOpacity80 { color: #A993A5; opacity: 0.8; }
<p style="color:#A993A5;opacity:0.8;">80%</p>
Text with #A993A5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A993A5;}
<p style="text-shadow: 3px 3px 1px #A993A5">Text here.</p>
This text has shadow with #A993A5 color.
.textShadow {text-shadow: 3px 3px 1px #A993A5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A993A5, 5px 5px 20px red">Text here.</p>
This text has shadow with #A993A5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A993A5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A993A5, Direction=45, Strength=4)">Text</p>
This text has shadow with #A993A5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A993A5; -webkit-box-shadow: 1px 1px 3px 2px #A993A5; box-shadow: 1px 1px 3px 2px #A993A5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A993A5; -webkit-box-shadow: 1px 1px 3px 2px #A993A5; box-shadow:1px 1px 3px 2px #A993A5;">
Div content here</div>
This text has color #A993A5 on black background.
This text has color #A993A5 on white background.
This text has black color on #A993A5 background.
This text has white color on #A993A5 background.