Gnome-terminal tabs: no contrast between active and inactive tabs

In Ubuntu 13.04, I often have multiple tabs open in gnome-terminal. The problem is that, while I can set the title of each tab, it is very hard to tell which tab is active -- the color and rendering distinction between the active tab and the inactive tab is so subtle that one must study the tab bar very carefully.

Is there a way to make this contrast more obvious?


I'm running Ubuntu 13.10 with the Ambience theme - had the same problem.

Solution: edit ~/.config/gtk-3.0/gtk.css (you might have to create it) and add:

TerminalWindow,
TerminalWindow.background {
        background-color: #6e6e6e;
        color: #000000;
}

TerminalWindow .notebook tab {
        padding: 2;
        background-color: #6e6e6e;
}

TerminalWindow .notebook tab:active {
        background-color: #d1d1d1;
}

Here is what worked for me in ubuntu 14.04, I tried to maintain similar overall look, and make the inactive tabs less bright.

edit the file ~/.config/gtk-3.0/gtk.css

to contain

TerminalWindow .notebook tab:active {
    background-color: #f5f4f3;
    foreground-color: #000000;
}

TerminalWindow .notebook tab {
    background-color: #d2d1d0;
    foreground-color: #2e2d2c;
}

close ALL terminal windows start and test

EDIT: After using that for a little while it became clear that a pronounced difference between active and inactive tab is not enough.

I think it is necessary to be able to tell an inactive tab at the first glance - without looking to its sides.

So here is the updated configuration (darker inactive tabs):

TerminalWindow .notebook tab:active {
    background-color: #f5f4f3;
    foreground-color: #000000;
}

TerminalWindow .notebook tab {
    background-color: #a2a1a0;
    foreground-color: #1e1d1c;
}