HEX: #A5A0AE
RGB: (165,160,174)
#A5A0AE contains red, green and blue colors in about the same proportion. Web safe color of #A5A0AE is #999999 (or #999).
#A5A0AE color RGB value is (165,160,174).
RGB: (165,160,174) (65%,63%,68%)
R 165 of 255 = 65%
G 160 of 255 = 63%
B 174 of 255 = 68%
R + G + B ~ 65%. #A5A0AE is quite light color.
R + G + B =
165 + 160 + 174 = 499 (100%)
R 165 of 499 ~ 33.07%
G 160 of 499 ~ 32.06%
B 174 of 499 ~ 34.87%
#A5A0AE color CMYK value is (5,8,0,32).
CMYK: (5,8,0,32) C5M8Y0K32 (5%,8%,0%,32%) (0.05/0.08/0.00/0.32)
A5 | A0 | AE | |
---|---|---|---|
RGB | 165 | 160 | 174 |
HSL | 261° | 7.95% | 65.49% |
HSB/HSV | 261° | 8.05% | 68.24% |
CMYK | 5.17% | 8.05% | 0.00% |
31.76% |
HEX | A5 | A0 | AE |
Decimal | 165 | 160 | 174 |
Binary | 10100101 | 10100000 | 10101110 |
Octal | 245 | 240 | 256 |
Examples of css and html codes for elements with #A5A0AE color. Also use rgb(165,160,174) instead hex code.
.myTextColor { color: #A5A0AE; }
<p style="color:#A5A0AE">This sample text font color is #A5A0AE.</p>
This text font color is #A5A0AE.
.myBgColor { background-color: #A5A0AE; }
<div style="background-color:#A5A0AE">Inner text</div>
This div background color is #A5A0AE.
.myBorderColor { border: 1px solid #A5A0AE; }
<div style="border:3px solid #A5A0AE">Div</div>
This div border color is #A5A0AE.
.myOpacity80 { color: #A5A0AE; opacity: 0.8; }
<p style="color:#A5A0AE;opacity:0.8;">80%</p>
Text with #A5A0AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5A0AE;}
<p style="text-shadow: 3px 3px 1px #A5A0AE">Text here.</p>
This text has shadow with #A5A0AE color.
.textShadow {text-shadow: 3px 3px 1px #A5A0AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5A0AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5A0AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5A0AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5A0AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5A0AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5A0AE; -webkit-box-shadow: 1px 1px 3px 2px #A5A0AE; box-shadow: 1px 1px 3px 2px #A5A0AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5A0AE; -webkit-box-shadow: 1px 1px 3px 2px #A5A0AE; box-shadow:1px 1px 3px 2px #A5A0AE;">
Div content here</div>
This text has color #A5A0AE on black background.
This text has color #A5A0AE on white background.
This text has black color on #A5A0AE background.
This text has white color on #A5A0AE background.