I am trying to match the color of a house icon using twitter bootstrap with the color of inactive text:
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<ul class="nav">
<li class="nav_item"><a href="indexdefaults.html"><i class="icon-home icon-gray"></i>Home</a></li>
<li class="active"><a href="about.html">About</a></li>
</ul>
</div>
</div>
</div>
but the icon-gray class is much darker than the text in the nav_item class. What is the corresponding icon for the foobar class that matches the color of the text nav_item?
source
share