HEX: #ADBDAD
RGB: (173,189,173)
#ADBDAD contains red, green and blue colors in about the same proportion. Web safe color of #ADBDAD is #99CC99 (or #9C9).
#ADBDAD color RGB value is (173,189,173).
RGB: (173,189,173) (68%,74%,68%)
R 173 of 255 = 68%
G 189 of 255 = 74%
B 173 of 255 = 68%
R + G + B ~ 70%. #ADBDAD is quite light color.
R + G + B =
173 + 189 + 173 = 535 (100%)
R 173 of 535 ~ 32.34%
G 189 of 535 ~ 35.33%
B 173 of 535 ~ 32.34%
#ADBDAD color CMYK value is (8,0,8,26).
CMYK: (8,0,8,26) C8M0Y8K26 (8%,0%,8%,26%) (0.08/0.00/0.08/0.26)
AD | BD | AD | |
---|---|---|---|
RGB | 173 | 189 | 173 |
HSL | 120° | 10.81% | 70.98% |
HSB/HSV | 120° | 8.47% | 74.12% |
CMYK | 8.47% | 0.00% | 8.47% |
25.88% |
HEX | AD | BD | AD |
Decimal | 173 | 189 | 173 |
Binary | 10101101 | 10111101 | 10101101 |
Octal | 255 | 275 | 255 |
Examples of css and html codes for elements with #ADBDAD color. Also use rgb(173,189,173) instead hex code.
.myTextColor { color: #ADBDAD; }
<p style="color:#ADBDAD">This sample text font color is #ADBDAD.</p>
This text font color is #ADBDAD.
.myBgColor { background-color: #ADBDAD; }
<div style="background-color:#ADBDAD">Inner text</div>
This div background color is #ADBDAD.
.myBorderColor { border: 1px solid #ADBDAD; }
<div style="border:3px solid #ADBDAD">Div</div>
This div border color is #ADBDAD.
.myOpacity80 { color: #ADBDAD; opacity: 0.8; }
<p style="color:#ADBDAD;opacity:0.8;">80%</p>
Text with #ADBDAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADBDAD;}
<p style="text-shadow: 3px 3px 1px #ADBDAD">Text here.</p>
This text has shadow with #ADBDAD color.
.textShadow {text-shadow: 3px 3px 1px #ADBDAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADBDAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADBDAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADBDAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADBDAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADBDAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADBDAD; -webkit-box-shadow: 1px 1px 3px 2px #ADBDAD; box-shadow: 1px 1px 3px 2px #ADBDAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADBDAD; -webkit-box-shadow: 1px 1px 3px 2px #ADBDAD; box-shadow:1px 1px 3px 2px #ADBDAD;">
Div content here</div>
This text has color #ADBDAD on black background.
This text has color #ADBDAD on white background.
This text has black color on #ADBDAD background.
This text has white color on #ADBDAD background.