Ubuntu – How to make selected tab in terminal more prominent

gnome-terminalthemes

Something about the color scheme changed in 11.04, and now it's very difficult for me to tell which tab is the selected one.

enter image description here

On my screen, the colors look more similar the further down I slouch in my chair (i.e. angle of view).

If I change the color scheme the problem is solved, but that solution is too extreme for me. Is there a way to just change the color of the selected tab in terminal, or otherwise make it more prominent?

UPDATE: In 12.10 the accepted solution doesn't work. Can anyone fix it?

Best Answer

For 12.10–15.04 you can create a CSS theme for GTK 3.0 as explained in this comment by Kees (kees-vanveen) on the bug report posted above by Alessio.

  1. Create the file ~/.config/gtk-3.0/gtk.css

  2. Paste this as the contents using your desired color:

    TerminalWindow .notebook tab:active {
        background-color: #def;
    }
    
  3. Close all Terminal windows and relaunch the application to see the change.

Related Question