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