HEX: #A6ABAE
RGB: (166,171,174)
#A6ABAE contains red, green and blue colors in about the same proportion. Web safe color of #A6ABAE is #999999 (or #999).
#A6ABAE color RGB value is (166,171,174).
RGB: (166,171,174) (65%,67%,68%)
R 166 of 255 = 65%
G 171 of 255 = 67%
B 174 of 255 = 68%
R + G + B ~ 67%. #A6ABAE is quite light color.
R + G + B =
166 + 171 + 174 = 511 (100%)
R 166 of 511 ~ 32.49%
G 171 of 511 ~ 33.46%
B 174 of 511 ~ 34.05%
#A6ABAE color CMYK value is (5,2,0,32).
CMYK: (5,2,0,32) C5M2Y0K32 (5%,2%,0%,32%) (0.05/0.02/0.00/0.32)
A6 | AB | AE | |
---|---|---|---|
RGB | 166 | 171 | 174 |
HSL | 203° | 4.71% | 66.67% |
HSB/HSV | 203° | 4.60% | 68.24% |
CMYK | 4.60% | 1.72% | 0.00% |
31.76% |
HEX | A6 | AB | AE |
Decimal | 166 | 171 | 174 |
Binary | 10100110 | 10101011 | 10101110 |
Octal | 246 | 253 | 256 |
Examples of css and html codes for elements with #A6ABAE color. Also use rgb(166,171,174) instead hex code.
.myTextColor { color: #A6ABAE; }
<p style="color:#A6ABAE">This sample text font color is #A6ABAE.</p>
This text font color is #A6ABAE.
.myBgColor { background-color: #A6ABAE; }
<div style="background-color:#A6ABAE">Inner text</div>
This div background color is #A6ABAE.
.myBorderColor { border: 1px solid #A6ABAE; }
<div style="border:3px solid #A6ABAE">Div</div>
This div border color is #A6ABAE.
.myOpacity80 { color: #A6ABAE; opacity: 0.8; }
<p style="color:#A6ABAE;opacity:0.8;">80%</p>
Text with #A6ABAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6ABAE;}
<p style="text-shadow: 3px 3px 1px #A6ABAE">Text here.</p>
This text has shadow with #A6ABAE color.
.textShadow {text-shadow: 3px 3px 1px #A6ABAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6ABAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6ABAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6ABAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6ABAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6ABAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6ABAE; -webkit-box-shadow: 1px 1px 3px 2px #A6ABAE; box-shadow: 1px 1px 3px 2px #A6ABAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6ABAE; -webkit-box-shadow: 1px 1px 3px 2px #A6ABAE; box-shadow:1px 1px 3px 2px #A6ABAE;">
Div content here</div>
This text has color #A6ABAE on black background.
This text has color #A6ABAE on white background.
This text has black color on #A6ABAE background.
This text has white color on #A6ABAE background.