HEX: #ADB9BE
RGB: (173,185,190)
#ADB9BE contains red, green and blue colors in about the same proportion. Web safe color of #ADB9BE is #99CCCC (or #9CC).
#ADB9BE color RGB value is (173,185,190).
RGB: (173,185,190) (68%,73%,75%)
R 173 of 255 = 68%
G 185 of 255 = 73%
B 190 of 255 = 75%
R + G + B ~ 72%. #ADB9BE is quite light color.
R + G + B =
173 + 185 + 190 = 548 (100%)
R 173 of 548 ~ 31.57%
G 185 of 548 ~ 33.76%
B 190 of 548 ~ 34.67%
#ADB9BE color CMYK value is (9,3,0,25).
CMYK: (9,3,0,25) C9M3Y0K25 (9%,3%,0%,25%) (0.09/0.03/0.00/0.25)
AD | B9 | BE | |
---|---|---|---|
RGB | 173 | 185 | 190 |
HSL | 198° | 11.56% | 71.18% |
HSB/HSV | 198° | 8.95% | 74.51% |
CMYK | 8.95% | 2.63% | 0.00% |
25.49% |
HEX | AD | B9 | BE |
Decimal | 173 | 185 | 190 |
Binary | 10101101 | 10111001 | 10111110 |
Octal | 255 | 271 | 276 |
Examples of css and html codes for elements with #ADB9BE color. Also use rgb(173,185,190) instead hex code.
.myTextColor { color: #ADB9BE; }
<p style="color:#ADB9BE">This sample text font color is #ADB9BE.</p>
This text font color is #ADB9BE.
.myBgColor { background-color: #ADB9BE; }
<div style="background-color:#ADB9BE">Inner text</div>
This div background color is #ADB9BE.
.myBorderColor { border: 1px solid #ADB9BE; }
<div style="border:3px solid #ADB9BE">Div</div>
This div border color is #ADB9BE.
.myOpacity80 { color: #ADB9BE; opacity: 0.8; }
<p style="color:#ADB9BE;opacity:0.8;">80%</p>
Text with #ADB9BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADB9BE;}
<p style="text-shadow: 3px 3px 1px #ADB9BE">Text here.</p>
This text has shadow with #ADB9BE color.
.textShadow {text-shadow: 3px 3px 1px #ADB9BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADB9BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADB9BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADB9BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADB9BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADB9BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADB9BE; -webkit-box-shadow: 1px 1px 3px 2px #ADB9BE; box-shadow: 1px 1px 3px 2px #ADB9BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADB9BE; -webkit-box-shadow: 1px 1px 3px 2px #ADB9BE; box-shadow:1px 1px 3px 2px #ADB9BE;">
Div content here</div>
This text has color #ADB9BE on black background.
This text has color #ADB9BE on white background.
This text has black color on #ADB9BE background.
This text has white color on #ADB9BE background.