HEX: #A7ABAF
RGB: (167,171,175)
#A7ABAF contains red, green and blue colors in about the same proportion. Web safe color of #A7ABAF is #999999 (or #999).
#A7ABAF color RGB value is (167,171,175).
RGB: (167,171,175) (65%,67%,69%)
R 167 of 255 = 65%
G 171 of 255 = 67%
B 175 of 255 = 69%
R + G + B ~ 67%. #A7ABAF is quite light color.
R + G + B =
167 + 171 + 175 = 513 (100%)
R 167 of 513 ~ 32.55%
G 171 of 513 ~ 33.33%
B 175 of 513 ~ 34.11%
#A7ABAF color CMYK value is (5,2,0,31).
CMYK: (5,2,0,31) C5M2Y0K31 (5%,2%,0%,31%) (0.05/0.02/0.00/0.31)
A7 | AB | AF | |
---|---|---|---|
RGB | 167 | 171 | 175 |
HSL | 210° | 4.76% | 67.06% |
HSB/HSV | 210° | 4.57% | 68.63% |
CMYK | 4.57% | 2.29% | 0.00% |
31.37% |
HEX | A7 | AB | AF |
Decimal | 167 | 171 | 175 |
Binary | 10100111 | 10101011 | 10101111 |
Octal | 247 | 253 | 257 |
Examples of css and html codes for elements with #A7ABAF color. Also use rgb(167,171,175) instead hex code.
.myTextColor { color: #A7ABAF; }
<p style="color:#A7ABAF">This sample text font color is #A7ABAF.</p>
This text font color is #A7ABAF.
.myBgColor { background-color: #A7ABAF; }
<div style="background-color:#A7ABAF">Inner text</div>
This div background color is #A7ABAF.
.myBorderColor { border: 1px solid #A7ABAF; }
<div style="border:3px solid #A7ABAF">Div</div>
This div border color is #A7ABAF.
.myOpacity80 { color: #A7ABAF; opacity: 0.8; }
<p style="color:#A7ABAF;opacity:0.8;">80%</p>
Text with #A7ABAF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7ABAF;}
<p style="text-shadow: 3px 3px 1px #A7ABAF">Text here.</p>
This text has shadow with #A7ABAF color.
.textShadow {text-shadow: 3px 3px 1px #A7ABAF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7ABAF, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7ABAF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7ABAF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7ABAF, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7ABAF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7ABAF; -webkit-box-shadow: 1px 1px 3px 2px #A7ABAF; box-shadow: 1px 1px 3px 2px #A7ABAF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7ABAF; -webkit-box-shadow: 1px 1px 3px 2px #A7ABAF; box-shadow:1px 1px 3px 2px #A7ABAF;">
Div content here</div>
This text has color #A7ABAF on black background.
This text has color #A7ABAF on white background.
This text has black color on #A7ABAF background.
This text has white color on #A7ABAF background.