HEX: #ADA5BF
RGB: (173,165,191)
#ADA5BF contains red, green and blue colors in about the same proportion. Web safe color of #ADA5BF is #9999CC (or #99C).
#ADA5BF color RGB value is (173,165,191).
RGB: (173,165,191) (68%,65%,75%)
R 173 of 255 = 68%
G 165 of 255 = 65%
B 191 of 255 = 75%
R + G + B ~ 69%. #ADA5BF is quite light color.
R + G + B =
173 + 165 + 191 = 529 (100%)
R 173 of 529 ~ 32.7%
G 165 of 529 ~ 31.19%
B 191 of 529 ~ 36.11%
#ADA5BF color CMYK value is (9,14,0,25).
CMYK: (9,14,0,25) C9M14Y0K25 (9%,14%,0%,25%) (0.09/0.14/0.00/0.25)
AD | A5 | BF | |
---|---|---|---|
RGB | 173 | 165 | 191 |
HSL | 258° | 16.88% | 69.80% |
HSB/HSV | 258° | 13.61% | 74.90% |
CMYK | 9.42% | 13.61% | 0.00% |
25.10% |
HEX | AD | A5 | BF |
Decimal | 173 | 165 | 191 |
Binary | 10101101 | 10100101 | 10111111 |
Octal | 255 | 245 | 277 |
Examples of css and html codes for elements with #ADA5BF color. Also use rgb(173,165,191) instead hex code.
.myTextColor { color: #ADA5BF; }
<p style="color:#ADA5BF">This sample text font color is #ADA5BF.</p>
This text font color is #ADA5BF.
.myBgColor { background-color: #ADA5BF; }
<div style="background-color:#ADA5BF">Inner text</div>
This div background color is #ADA5BF.
.myBorderColor { border: 1px solid #ADA5BF; }
<div style="border:3px solid #ADA5BF">Div</div>
This div border color is #ADA5BF.
.myOpacity80 { color: #ADA5BF; opacity: 0.8; }
<p style="color:#ADA5BF;opacity:0.8;">80%</p>
Text with #ADA5BF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADA5BF;}
<p style="text-shadow: 3px 3px 1px #ADA5BF">Text here.</p>
This text has shadow with #ADA5BF color.
.textShadow {text-shadow: 3px 3px 1px #ADA5BF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADA5BF, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADA5BF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADA5BF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADA5BF, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADA5BF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADA5BF; -webkit-box-shadow: 1px 1px 3px 2px #ADA5BF; box-shadow: 1px 1px 3px 2px #ADA5BF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADA5BF; -webkit-box-shadow: 1px 1px 3px 2px #ADA5BF; box-shadow:1px 1px 3px 2px #ADA5BF;">
Div content here</div>
This text has color #ADA5BF on black background.
This text has color #ADA5BF on white background.
This text has black color on #ADA5BF background.
This text has white color on #ADA5BF background.