The background color of the Eclipse Cue box uses the system's cue box color configuration, which is yellow under Windows, but black under Ubuntu12.04 (GNOME), which makes it hard to see the hints.
In Eclipse we cannot modify the configuration of this color, only by modifying the system's color configuration. Before ubuntu11.10, we can be able to customize the system appearance to modify the configuration of this color, but since ubuntu11.10, there is no relevant interface, can only be modified by the way the configuration file implemented. This file is located under the corresponding theme folder under/usr/share/themes/, if you use the Radiance theme, go to the/usr/share/themes/radiance/directory
cd
/usr/share/themes/Radiance
Opens the GTK-2.0/GTKRC file,
sudo
vi
gtk-2.0
/gtkrc
Modify the values of the first row of the Tooltip_fg_color and Tooltip_bg_color two properties, and if you do not change the attributes, you can add them yourself, which are set to the default values of Windows, respectively:
- Tooltip_fg_color: #000000
- Tooltip_bg_color: #f2edbc
then save the exit, open the system appearance configuration, switch the theme, when the switch back, the effect of the changes will be effective.
Original address: http://blog.csdn.net/bluishglc/article/details/7554602
2015.03.21
--------------------------------------------
Contact information
--------------------------------------------
Weibo:aresxiong
e-mail: [email protected]
--------------------------------------------
Ubuntu12.04 in eclipse cue box black background color modified