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