Jika Anda ingin membuat teks dari tab aktif lebih jelas, Anda dapat memodifikasi labelnya seperti ini,
edit file ~/.config/gtk-3.0/gtk.css
TerminalTabLabel.active-page .label {
color: cyan;
font-weight: bold;
}
Diuji di terminal gnome 3.17.91
Inilah yang saya gunakan di tempat kerja di Ubuntu 15.10 dengan gnome-terminal 3.16.2. Ukuran tab yang lebih kecil memungkinkan lebih banyak area layar untuk terminal untuk digunakan dan saya telah bereksperimen dengan kontras antara tab aktif dan tidak aktif. Saya pikir teks label tab terlihat lebih baik tanpa gaya tebal diterapkan.
/* gnome-terminal */
@define-color term-win-bg #262626;
@define-color term-tab-inactive-bg #333333;
@define-color term-tab-active-bg #424242;
@define-color ubuntu-orange #fb9267;
TerminalScreen {
-TerminalScreen-background-darkness: 0.95;
background-color: @term-win-bg;
}
TerminalWindow .notebook {
border: 0;
padding: 0;
}
TerminalWindow .notebook tab {
border: 0;
border-radius: 0px;
border-image: -gtk-gradient (linear, left top, left bottom,
from (alpha (shade (@term-win-bg, 0.9), 0.0)),
to (shade (@term-win-bg, 0.9))) 1;
border-image-width: 0 1px;
border-color: transparent;
border-width: 0;
box-shadow: none;
background-color: shade(@term-tab-inactive-bg, 1);
}
TerminalWindow .notebook tab:active {
border: 0;
border-radius: 0px;
background-color: shade(@term-tab-active-bg, 1);
}
TerminalTabLabel.active-page .label {
/*color: @bg_color;
font-weight: bold
color: @ubuntu-orange; */
color: cyan;
}