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