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