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