So, I know there are lots of posts about getting graphical primary link and secondary link tabs like the Drupal site here has. This is not about that.
Instead, it's about the "View", "edit", and "outline" tabs that you get for a content node you have authored or have edit perimssions on. I am working on re-coloring blue-marine into some darker themes (dark blue, dark red, black, etc) and I have been able to re-color everything... except these two items. They seem to just insist on staying grey, and I can't figure out what attribute I need to create or change in CSS to change their colours.
Looking at the page source I found this:
<div class="tabs"><ul class="tabs primary">
<li class="active"><a href="/?q=node/61" class="active">view</a></li>
<li><a href="/?q=node/61/edit">edit</a></li>
<li><a href="/?q=node/61/outline">outline</a></li>
<li><a href="/?q=node/61/email">email</a></li>
</ul>
</div>
... which made me think that changing the background for ".tabs.primary" might work... or ".tabs", or ".tabs a".... However when I change the background color, I get a straight bar of that color all across the page from right to left, but the tabs themselves remain light/dark grey. Since my links on this page (due to the dark backgrounds) are light in colour, I was hoping to make the tabs darker... but I just can't figure out what attribute to change.