HEX: #ADB8AC
RGB: (173,184,172)
#ADB8AC contains red, green and blue colors in about the same proportion. Web safe color of #ADB8AC is #99CC99 (or #9C9).
#ADB8AC color RGB value is (173,184,172).
RGB: (173,184,172) (68%,72%,67%)
R 173 of 255 = 68%
G 184 of 255 = 72%
B 172 of 255 = 67%
R + G + B ~ 69%. #ADB8AC is quite light color.
R + G + B =
173 + 184 + 172 = 529 (100%)
R 173 of 529 ~ 32.7%
G 184 of 529 ~ 34.78%
B 172 of 529 ~ 32.51%
#ADB8AC color CMYK value is (6,0,7,28).
CMYK: (6,0,7,28) C6M0Y7K28 (6%,0%,7%,28%) (0.06/0.00/0.07/0.28)
AD | B8 | AC | |
---|---|---|---|
RGB | 173 | 184 | 172 |
HSL | 115° | 7.79% | 69.80% |
HSB/HSV | 115° | 6.52% | 72.16% |
CMYK | 5.98% | 0.00% | 6.52% |
27.84% |
HEX | AD | B8 | AC |
Decimal | 173 | 184 | 172 |
Binary | 10101101 | 10111000 | 10101100 |
Octal | 255 | 270 | 254 |
Examples of css and html codes for elements with #ADB8AC color. Also use rgb(173,184,172) instead hex code.
.myTextColor { color: #ADB8AC; }
<p style="color:#ADB8AC">This sample text font color is #ADB8AC.</p>
This text font color is #ADB8AC.
.myBgColor { background-color: #ADB8AC; }
<div style="background-color:#ADB8AC">Inner text</div>
This div background color is #ADB8AC.
.myBorderColor { border: 1px solid #ADB8AC; }
<div style="border:3px solid #ADB8AC">Div</div>
This div border color is #ADB8AC.
.myOpacity80 { color: #ADB8AC; opacity: 0.8; }
<p style="color:#ADB8AC;opacity:0.8;">80%</p>
Text with #ADB8AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADB8AC;}
<p style="text-shadow: 3px 3px 1px #ADB8AC">Text here.</p>
This text has shadow with #ADB8AC color.
.textShadow {text-shadow: 3px 3px 1px #ADB8AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADB8AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADB8AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADB8AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADB8AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADB8AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADB8AC; -webkit-box-shadow: 1px 1px 3px 2px #ADB8AC; box-shadow: 1px 1px 3px 2px #ADB8AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADB8AC; -webkit-box-shadow: 1px 1px 3px 2px #ADB8AC; box-shadow:1px 1px 3px 2px #ADB8AC;">
Div content here</div>
This text has color #ADB8AC on black background.
This text has color #ADB8AC on white background.
This text has black color on #ADB8AC background.
This text has white color on #ADB8AC background.