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