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