HEX: #A7ADBB
RGB: (167,173,187)
#A7ADBB contains red, green and blue colors in about the same proportion. Web safe color of #A7ADBB is #9999CC (or #99C).
#A7ADBB color RGB value is (167,173,187).
RGB: (167,173,187) (65%,68%,73%)
R 167 of 255 = 65%
G 173 of 255 = 68%
B 187 of 255 = 73%
R + G + B ~ 69%. #A7ADBB is quite light color.
R + G + B =
167 + 173 + 187 = 527 (100%)
R 167 of 527 ~ 31.69%
G 173 of 527 ~ 32.83%
B 187 of 527 ~ 35.48%
#A7ADBB color CMYK value is (11,7,0,27).
CMYK: (11,7,0,27) C11M7Y0K27 (11%,7%,0%,27%) (0.11/0.07/0.00/0.27)
A7 | AD | BB | |
---|---|---|---|
RGB | 167 | 173 | 187 |
HSL | 222° | 12.82% | 69.41% |
HSB/HSV | 222° | 10.70% | 73.33% |
CMYK | 10.70% | 7.49% | 0.00% |
26.67% |
HEX | A7 | AD | BB |
Decimal | 167 | 173 | 187 |
Binary | 10100111 | 10101101 | 10111011 |
Octal | 247 | 255 | 273 |
Examples of css and html codes for elements with #A7ADBB color. Also use rgb(167,173,187) instead hex code.
.myTextColor { color: #A7ADBB; }
<p style="color:#A7ADBB">This sample text font color is #A7ADBB.</p>
This text font color is #A7ADBB.
.myBgColor { background-color: #A7ADBB; }
<div style="background-color:#A7ADBB">Inner text</div>
This div background color is #A7ADBB.
.myBorderColor { border: 1px solid #A7ADBB; }
<div style="border:3px solid #A7ADBB">Div</div>
This div border color is #A7ADBB.
.myOpacity80 { color: #A7ADBB; opacity: 0.8; }
<p style="color:#A7ADBB;opacity:0.8;">80%</p>
Text with #A7ADBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7ADBB;}
<p style="text-shadow: 3px 3px 1px #A7ADBB">Text here.</p>
This text has shadow with #A7ADBB color.
.textShadow {text-shadow: 3px 3px 1px #A7ADBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7ADBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7ADBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7ADBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7ADBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7ADBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7ADBB; -webkit-box-shadow: 1px 1px 3px 2px #A7ADBB; box-shadow: 1px 1px 3px 2px #A7ADBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7ADBB; -webkit-box-shadow: 1px 1px 3px 2px #A7ADBB; box-shadow:1px 1px 3px 2px #A7ADBB;">
Div content here</div>
This text has color #A7ADBB on black background.
This text has color #A7ADBB on white background.
This text has black color on #A7ADBB background.
This text has white color on #A7ADBB background.