HEX: #A6AABA
RGB: (166,170,186)
#A6AABA contains red, green and blue colors in about the same proportion. Web safe color of #A6AABA is #9999CC (or #99C).
#A6AABA color RGB value is (166,170,186).
RGB: (166,170,186) (65%,67%,73%)
R 166 of 255 = 65%
G 170 of 255 = 67%
B 186 of 255 = 73%
R + G + B ~ 68%. #A6AABA is quite light color.
R + G + B =
166 + 170 + 186 = 522 (100%)
R 166 of 522 ~ 31.8%
G 170 of 522 ~ 32.57%
B 186 of 522 ~ 35.63%
#A6AABA color CMYK value is (11,9,0,27).
CMYK: (11,9,0,27) C11M9Y0K27 (11%,9%,0%,27%) (0.11/0.09/0.00/0.27)
A6 | AA | BA | |
---|---|---|---|
RGB | 166 | 170 | 186 |
HSL | 228° | 12.66% | 69.02% |
HSB/HSV | 228° | 10.75% | 72.94% |
CMYK | 10.75% | 8.60% | 0.00% |
27.06% |
HEX | A6 | AA | BA |
Decimal | 166 | 170 | 186 |
Binary | 10100110 | 10101010 | 10111010 |
Octal | 246 | 252 | 272 |
Examples of css and html codes for elements with #A6AABA color. Also use rgb(166,170,186) instead hex code.
.myTextColor { color: #A6AABA; }
<p style="color:#A6AABA">This sample text font color is #A6AABA.</p>
This text font color is #A6AABA.
.myBgColor { background-color: #A6AABA; }
<div style="background-color:#A6AABA">Inner text</div>
This div background color is #A6AABA.
.myBorderColor { border: 1px solid #A6AABA; }
<div style="border:3px solid #A6AABA">Div</div>
This div border color is #A6AABA.
.myOpacity80 { color: #A6AABA; opacity: 0.8; }
<p style="color:#A6AABA;opacity:0.8;">80%</p>
Text with #A6AABA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A6AABA;}
<p style="text-shadow: 3px 3px 1px #A6AABA">Text here.</p>
This text has shadow with #A6AABA color.
.textShadow {text-shadow: 3px 3px 1px #A6AABA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A6AABA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A6AABA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A6AABA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A6AABA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A6AABA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A6AABA; -webkit-box-shadow: 1px 1px 3px 2px #A6AABA; box-shadow: 1px 1px 3px 2px #A6AABA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A6AABA; -webkit-box-shadow: 1px 1px 3px 2px #A6AABA; box-shadow:1px 1px 3px 2px #A6AABA;">
Div content here</div>
This text has color #A6AABA on black background.
This text has color #A6AABA on white background.
This text has black color on #A6AABA background.
This text has white color on #A6AABA background.