Reputation: 159
Is it at all possible to change the color of the text highlight in Eclipse console to something more visible in Manjaro Linux? Your time and help are both much appreciated.
Currently, I am stuck with a barely visible light grey text selection in Eclipse console in the following two scenarios:
Find\Replace...
search functionUpvotes: 2
Views: 1558
Reputation: 8849
You have to change property selected_bg_color value in your current GTK theme gtkrc file. I am using Ambiance theme.
So my setting are:
cat /usr/share/themes/Ambiance/gtk-2.0/gtkrc | more
gtk-color-scheme = "base_color:#ffffff\nfg_color:#4c4c4c\ntooltip_fg_color:#000000\nselected_bg_color:#f07746\nselected_fg_color:#FFFFFF\ntext_color:#3C3C3C\nbg_color:#F2F1F 0\ntooltip_bg_color:#f5f5c5\nlink_color:#DD4814"
Also refer these post which helps you in future for similar kinds of problems.
Upvotes: 1
Reputation: 767
I once ran into the same problem and used the gnome-color-chooser
to resolve this issue.
Upvotes: 1