web-dev-qa-db-ja.com

Ubuntu 18.10テーマの選択色の変更

UbuntuにはAnt Draculaテーマを使用します。ただし、選択色はPink色で、別の色に変更します。

どうすれば変更できますか?

テーマリンクは https://www.gnome-look.org/p/1099856/

Pink color on home

そしてFirefoxで。

enter image description here

2
user23

ファイルgtk.cssを編集する必要があります

ファイルにアクセスする

Sudo -H nautilus /usr/share/themes/Ant-Dracula/gtk-3.20/gtk.css/変更/usr/share/themesファイルを~/.themesに保存した場合

#ff79c6を見つけて、最初の行で好みの色に変更します。テーマに大きな影響を与えます。

/* GTK NAMED COLORS
   ----------------
   use responsibly! */
/* widget text/foreground color */
@define-color theme_fg_color #f8f8f2;
/* text color for entries, views and content in general */
@define-color theme_text_color #f8f8f2;
/* widget base background color */
@define-color theme_bg_color #1e1f29;
/* text widgets and the like base background color */
@define-color theme_base_color #282a36;
/* base background color of selections */
@define-color theme_selected_bg_color #ff79c6;
/* text/foreground color of selections */
@define-color theme_selected_fg_color #f8f8f2;
/* base background color of disabled widgets */
@define-color insensitive_bg_color #22232e;
/* text foreground color of disabled widgets */
@define-color insensitive_fg_color #8b8c8e;
/* disabled text widgets and the like base background color */
@define-color insensitive_base_color #282a36;
/* widget text/foreground color on backdrop windows */
@define-color theme_unfocused_fg_color #8b8c8e;
/* text color for entries, views and content in general on backdrop windows */
@define-color theme_unfocused_text_color #f8f8f2;
/* widget base background color on backdrop windows */
@define-color theme_unfocused_bg_color #1e1f29;
/* text widgets and the like base background color on backdrop windows */
@define-color theme_unfocused_base_color #2a2c39;
/* base background color of selections on backdrop windows */
@define-color theme_unfocused_selected_bg_color #ff79c6;
/* text/foreground color of selections on backdrop windows */
@define-color theme_unfocused_selected_fg_color #f8f8f2;
/* widgets main borders color */
@define-color borders rgba(25, 26, 34, 0.9);
/* widgets main borders color on backdrop windows */
@define-color unfocused_borders rgba(26, 27, 35, 0.91);
/* these are pretty self explicative */
@define-color warning_color #ff9f39;
@define-color error_color #ff3c3c;
@define-color success_color #4caec3;

色が#ff79c6の67のエントリがあり、それらすべてをシングルショットで#456789に置き換えました。各個人を試してみたい場合は、これらの67のエントリを試行錯誤する必要があります。

ファイルを保存して閉じます。再起動して変更を確認します。

enter image description here

1
PRATAP