HEX: #ADB4AA
RGB: (173,180,170)
#ADB4AA contains red, green and blue colors in about the same proportion. Web safe color of #ADB4AA is #99CC99 (or #9C9).
#ADB4AA color RGB value is (173,180,170).
RGB: (173,180,170) (68%,71%,67%)
R 173 of 255 = 68%
G 180 of 255 = 71%
B 170 of 255 = 67%
R + G + B ~ 69%. #ADB4AA is quite light color.
R + G + B =
173 + 180 + 170 = 523 (100%)
R 173 of 523 ~ 33.08%
G 180 of 523 ~ 34.42%
B 170 of 523 ~ 32.5%
#ADB4AA color CMYK value is (4,0,6,29).
CMYK: (4,0,6,29) C4M0Y6K29 (4%,0%,6%,29%) (0.04/0.00/0.06/0.29)
AD | B4 | AA | |
---|---|---|---|
RGB | 173 | 180 | 170 |
HSL | 102° | 6.25% | 68.63% |
HSB/HSV | 102° | 5.56% | 70.59% |
CMYK | 3.89% | 0.00% | 5.56% |
29.41% |
HEX | AD | B4 | AA |
Decimal | 173 | 180 | 170 |
Binary | 10101101 | 10110100 | 10101010 |
Octal | 255 | 264 | 252 |
Examples of css and html codes for elements with #ADB4AA color. Also use rgb(173,180,170) instead hex code.
.myTextColor { color: #ADB4AA; }
<p style="color:#ADB4AA">This sample text font color is #ADB4AA.</p>
This text font color is #ADB4AA.
.myBgColor { background-color: #ADB4AA; }
<div style="background-color:#ADB4AA">Inner text</div>
This div background color is #ADB4AA.
.myBorderColor { border: 1px solid #ADB4AA; }
<div style="border:3px solid #ADB4AA">Div</div>
This div border color is #ADB4AA.
.myOpacity80 { color: #ADB4AA; opacity: 0.8; }
<p style="color:#ADB4AA;opacity:0.8;">80%</p>
Text with #ADB4AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADB4AA;}
<p style="text-shadow: 3px 3px 1px #ADB4AA">Text here.</p>
This text has shadow with #ADB4AA color.
.textShadow {text-shadow: 3px 3px 1px #ADB4AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADB4AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADB4AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADB4AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADB4AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADB4AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADB4AA; -webkit-box-shadow: 1px 1px 3px 2px #ADB4AA; box-shadow: 1px 1px 3px 2px #ADB4AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADB4AA; -webkit-box-shadow: 1px 1px 3px 2px #ADB4AA; box-shadow:1px 1px 3px 2px #ADB4AA;">
Div content here</div>
This text has color #ADB4AA on black background.
This text has color #ADB4AA on white background.
This text has black color on #ADB4AA background.
This text has white color on #ADB4AA background.