102

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?

Seth
  • 57,282
  • 43
  • 144
  • 200
itsadok
  • 2,894
  • 4
  • 28
  • 28

5 Answers5

89

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.

David Harkness
  • 1,039
  • 9
  • 11
17

I'm not that much of a theme hacker, but here's a quick fix:

Create or edit the file ~/.gtkrc-2.0 to include the following:

style "gnome_terminal_notebook"
{
  fg[NORMAL] = "#00ff00"
}

widget "*TerminalWindow.*.GtkNotebook*" style "gnome_terminal_notebook"

This will turn the text color of the active tab green. Not very beautiful, but should give you a start.

You could also lighten up the highlighted tab by replacing the fg line with:

bg[NORMAL] = shade (1.25, "#3c3b37")

The downside: this will also make the inner borders brighter.

Note: This will influence every theme you choose in the appearance properties, so don't forget to undo those changes when using another theme.

htorque
  • 63,950
  • 40
  • 194
  • 219
  • This workaround works perfectly! You can use #4c4b47 for an even brighter background. – Nicolas Raoul May 31 '11 at 14:35
  • This suggestion does not work on 12.10 Can anyone confirm it does ? – Scott Stensland Feb 28 '13 at 20:21
  • @ScottStensland - See [my answer](http://askubuntu.com/a/252192/18031) for a solution that works on 12.10. – David Harkness Mar 14 '13 at 06:52
  • Works for gtk-2.0 based terminal, like my: MATE Terminal 1.8.1 / MATE Desktop Environment 1.8.2 / Ubuntu 14.04 / Kernel Linux 4.2.0-27-generic. Also refer to [this](https://weishi.github.io/blog/2014/09/27/change-tab-color-in-terminator-and-ubuntu-terminal/) for `bg[ACTIVE]` `fg[ACTIVE]` etc. – Weekend Apr 18 '18 at 08:27
4

Using Ubuntu's warm grey in https://design.ubuntu.com/brand/colour-palette, this is a small variation of David's:

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

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

The color of other tabs here is slightly darker.

Rodrigo Farias
  • 307
  • 1
  • 3
  • 9
1

You can hack the theme and change colors that way. I did that years ago when a theme I otherwise liked didn't have enough contrast.

Themes installed system-wide live in /usr/share/themes, while your own themes live in ~/.themes. If the theme you're modifying is a system-wide theme, I suggest copying it to ~/.themes and renaming it before making changes. Otherwise, your changes will get overwritten the next time the package responsible for those files gets upgraded.

Scott Severance
  • 13,776
  • 9
  • 52
  • 76
0

For Ubuntu 16.04, create a file named ~/.config/gtk-3.0/gtk.css, and place the following into it:

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

Credit: http://eli.thegreenplace.net/2014/highlighting-the-active-tab-in-gnome-terminal/

krokodil
  • 253
  • 2
  • 6