ender516 wrote:I guess that there is nothing you can do about the ugly name, but surely you can change the horrid colours? (I have no idea how onerous that might be, but I have to believe that if it is based on the X Window System, then you can change the colours.)
As fortune would have it, by happenstance I have been looking into this very thing.
firstly, you need to install dconf-tools (just apt-get it from the command line) then run dconf-editor. (and no, the config editor that comes with ubuntu is not the same thing and will not be sufficient)
There, you can go to org.gnome.desktop.interface and find the key "gtk-color-scheme" which is a string. Now this gets a bit tricky, as there's no good help available on dconf-editor itself, so I had to dig for the answers, but anyway, apparently the string needs to be formatted like this:
item:colour; item:colour; item:colour; (and so on...)
Where colour can be in hex triplet form - eg. #556677 and the item can be one of the following:
fg_color
bg_color
text_color
base_color
selected_fg_color
selected_bg_color
tooltip_fg_color
tooltip_bg_color
link_color
Now out of these, selected_bg_color is worth changing, and probably bg_color as well, I haven't found out what the others do yet, but by changing these two you get rid of the horrid bright orange in menus (the selected item in menus will no longer be orange) and when you highlight text in most programs it won't be orange.
So, for example, I set the key to this value:
selected_bg_color:#007090; bg_color:#007090
However, for some reason this doesn't seem to affect the text highlight colour in firefox. Probably because firefox doesn't use Gtk. I haven't yet managed to find how to change the colour in firefox, but it does affect menu highlight colour in firefox so that's good at least.