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