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