1

This topic is very close to what was suggested in Gnome-terminal tabs: no contrast between active and inactive tabs. I'm using Ubuntu 14.04 and although the gtk.css configuration works fine with default gnome terminal, it does not apply to my tilda terminal.

Does anyone know how to get the same effect on tilda ?

1 Answers1

3

You could use following configuration placed in ~/.config/tilda/style.css file:

GtkWindow#Main {
    #background-color: rgba(0, 0, 0, 0);
    background-color: #000000;
}

GtkWindow#Main .notebook {
    padding: 0px;
}

GtkWindow#Main .notebook tab GtkLabel {
    padding-left: 15px;
    padding-right: 15px;
    color: #505050;
}

GtkWindow#Main .notebook tab {
    background-color: #101010;
}

GtkWindow#Main .notebook tab:active {
    #background-color: rgba(0, 0, 0, 0.85);
    background-color: #181818;
}