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