Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>it must be a system setting, try the Ubuntu control center (system settings) / appearance / customize. Click all the tabs and see which color matches the color in eclipse.</p> <p><strong>Update:</strong> I just realized that in ubuntu 11.04 for some weird reason the possibility to customize the colors was removed, you need to change the config files</p> <pre><code>sudo vim /usr/share/themes/Ambiance/gtk-2.0/gtkrc </code></pre> <p>in my version line 94 is</p> <pre><code>base[ACTIVE] = shade (0.97, @bg_color) </code></pre> <p>which you need to change as you wish, e.g.:</p> <pre><code>base[ACTIVE] = shade (0.50, @bg_color) </code></pre> <p>then you go to System settings / appearance, change the theme to something then change back to Ambience and voila, things are changed. I just can't imagine why there is no UI for changing this.</p> <p>Update 2: this is slightly similar to what the other commenter suggested, just in a different file. I guess the difference is that will affect the system globally</p> <p><strong>UPDATE 2 :</strong></p> <p>in ubuntu 11.10 there is still no GUI to change the theme colors, but they also changed the file structure so exectute the following command (same as above)</p> <pre><code>sudo vim /usr/share/themes/Ambiance/gtk-2.0/gtkrc </code></pre> <p>and search for this section that controls tooltip colors :</p> <pre><code>style "tooltips" { bg[NORMAL] = @tooltip_bg_color fg[NORMAL] = @tooltip_fg_color } </code></pre> <p>and alter is as you wish e.g.:</p> <pre><code> bg[NORMAL] = "#000000" fg[NORMAL] = "#FFFFFF" </code></pre> <p><strong>UPDATE 3 :</strong></p> <p>In ubuntu 12.04 you need to do both changes described in update 1 and update 2</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload