Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ubuntu 10.04.1 new theme has by default all windows background colors set to black.
I don't want to change that.

In Eclipse, the interface didn't change much due to 10.04.1 - except for one annoying thing:
when the mouse hovers over a keyword - a variable for instance - the type (...) of that keyword is displayed in a small pop-up window.
The problem since 10.04.1, is that the text is in black color while the background is also black.

Is there a way to change that background color in Eclipse?

share|improve this question
2  

1 Answer

up vote 33 down vote accepted

All the various popup background color are managed in Preferences > Java > Editor (like the one for the completion list popup in bug 133615).
Other background colors are in General > Appearance > Colors and Font (type background in the filter field).

But the type popup seems to stick to a system color, which is why you see a black background.
If this is truly the case, it is worth reporting as a bug.


The OP confirms it is not the case, actually:

It was in Preferences > C/C++ > Editor > Source hover background, and had to untick the "System default" (because the shown color was light-gray!)


On Ubuntu 12.04+, the post "How to change tooltip background color in Unity?" also mentions:

/usr/share/themes/Ambiance/gtk-2.0/gtkrc

The recent post (December 2012) "Eclipse Papercut #10 – Eclipse on Ubuntu: Fixing the black background color in hover" (from Lars Vogel) confirms:

The relevant properties are tooltip_fg_color and tooltip_bg_color.
Just search for these values, the position changes sometimes between releases, currently they are at the very top of the file.

The following setting uses more reasonable colors.

tooltip_fg_color:#000000
tooltip_bg_color:#f5f5c5
share|improve this answer
Thanks. Don't know why I didn't find that after searching for a to-the-nerves time... It was in Preferences > C/C++ > Editor > Source hover background, and had to untick the "System default" (because the shown color was light-gray!) – ring0 Aug 26 '10 at 4:28
Filter for "background" and go to C++ > Editor. Then Look under the list marked "Appearance color options" There you will find "Source hover background" – Diederik Aug 10 '11 at 13:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.