回答:
私はUbuntu 13.10をAmbienceテーマで実行しています-同じ問題がありました。
解決策:編集~/.config/gtk-3.0/gtk.css
(作成が必要な場合があります)および追加:
TerminalWindow,
TerminalWindow.background {
background-color: #6e6e6e;
color: #000000;
}
TerminalWindow .notebook tab {
padding: 2;
background-color: #6e6e6e;
}
TerminalWindow .notebook tab:active {
background-color: #d1d1d1;
}
これがubuntu 14.04で私のために働いたものです、私は同様の全体的な外観を維持し、非アクティブなタブの明るさを低くしようとしました。
ファイルを編集する ~/.config/gtk-3.0/gtk.css
含有すること
TerminalWindow .notebook tab:active {
background-color: #f5f4f3;
foreground-color: #000000;
}
TerminalWindow .notebook tab {
background-color: #d2d1d0;
foreground-color: #2e2d2c;
}
すべてのターミナルウィンドウを閉じて起動し、テストします
編集:少しの間それを使用した後、アクティブなタブと非アクティブなタブの顕著な違いでは不十分であることが明らかになりました。
非アクティブなタブを一目でわかるようにする必要があると思います-その側面を見ないで。
更新された構成は次のとおりです(暗い非アクティブなタブ):
TerminalWindow .notebook tab:active {
background-color: #f5f4f3;
foreground-color: #000000;
}
TerminalWindow .notebook tab {
background-color: #a2a1a0;
foreground-color: #1e1d1c;
}
アクティブなタブのテキストをより明確にしたい場合は、このようにラベルを変更できます。
ファイルを編集する ~/.config/gtk-3.0/gtk.css
TerminalTabLabel.active-page .label {
color: cyan;
font-weight: bold;
}
gnome-terminal 3.17.91でテスト済み
これは、Ubuntu 15.10でgnome-terminal 3.16.2を使用して使用しているものです。タブサイズを小さくすると、端末で使用できる画面領域が増え、アクティブタブと非アクティブタブのコントラストを実験しました。タブラベルのテキストは、太字スタイルを適用しないほうが見た目が良いと思います。
/* 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;
}
デフォルトのUbuntuテーマであるAmbianceを使用して、gnome-terminalのアクティブタブと非アクティブタブを区別するのに問題はありません。
Launchpadを見ると、これは多くの人々に影響を及ぼしている確認済みのバグであることがわかりました。どのタブが選択されているかを区別するのは困難です。
これがあなたにも影響している場合、Ubuntuテーマを変更することでこれを解決できます。デスクトップを右クリックし、デスクトップの背景を変更を選択し、新しく開いたウィンドウでテーマをハイコントラストに変更します。
次に、gnome-terminalのアクティブなタブと非アクティブなタブを問題なく区別できます。