HEX: #ADAEAF
RGB: (173,174,175)
#ADAEAF contains red, green and blue colors in about the same proportion. Web safe color of #ADAEAF is #999999 (or #999).
#ADAEAF color RGB value is (173,174,175).
RGB: (173,174,175) (68%,68%,69%)
R 173 of 255 = 68%
G 174 of 255 = 68%
B 175 of 255 = 69%
R + G + B ~ 68%. #ADAEAF is quite light color.
R + G + B =
173 + 174 + 175 = 522 (100%)
R 173 of 522 ~ 33.14%
G 174 of 522 ~ 33.33%
B 175 of 522 ~ 33.52%
#ADAEAF color CMYK value is (1,1,0,31).
CMYK: (1,1,0,31) C1M1Y0K31 (1%,1%,0%,31%) (0.01/0.01/0.00/0.31)
AD | AE | AF | |
---|---|---|---|
RGB | 173 | 174 | 175 |
HSL | 210° | 1.23% | 68.24% |
HSB/HSV | 210° | 1.14% | 68.63% |
CMYK | 1.14% | 0.57% | 0.00% |
31.37% |
HEX | AD | AE | AF |
Decimal | 173 | 174 | 175 |
Binary | 10101101 | 10101110 | 10101111 |
Octal | 255 | 256 | 257 |
Examples of css and html codes for elements with #ADAEAF color. Also use rgb(173,174,175) instead hex code.
.myTextColor { color: #ADAEAF; }
<p style="color:#ADAEAF">This sample text font color is #ADAEAF.</p>
This text font color is #ADAEAF.
.myBgColor { background-color: #ADAEAF; }
<div style="background-color:#ADAEAF">Inner text</div>
This div background color is #ADAEAF.
.myBorderColor { border: 1px solid #ADAEAF; }
<div style="border:3px solid #ADAEAF">Div</div>
This div border color is #ADAEAF.
.myOpacity80 { color: #ADAEAF; opacity: 0.8; }
<p style="color:#ADAEAF;opacity:0.8;">80%</p>
Text with #ADAEAF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADAEAF;}
<p style="text-shadow: 3px 3px 1px #ADAEAF">Text here.</p>
This text has shadow with #ADAEAF color.
.textShadow {text-shadow: 3px 3px 1px #ADAEAF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADAEAF, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADAEAF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADAEAF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADAEAF, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADAEAF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADAEAF; -webkit-box-shadow: 1px 1px 3px 2px #ADAEAF; box-shadow: 1px 1px 3px 2px #ADAEAF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADAEAF; -webkit-box-shadow: 1px 1px 3px 2px #ADAEAF; box-shadow:1px 1px 3px 2px #ADAEAF;">
Div content here</div>
This text has color #ADAEAF on black background.
This text has color #ADAEAF on white background.
This text has black color on #ADAEAF background.
This text has white color on #ADAEAF background.