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