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