Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

eclipse with moonrise color theme: change button color

Tags:

I run the Eclipse Kepler IDE on redhat. I use the dark theme color Moonrise.

The buttons in all windows appear as white with white text. As you can imagine this is suboptimal...

How can I change the color of the buttons, or the color of the text buttons?

I looked into Preferences/Appearance/Colors and Fonts but could not find the correct color to change.

Here's how it looks:

enter image description here

like image 925
DevShark Avatar asked Apr 15 '16 08:04

DevShark


1 Answers

Adding SWT_GTK3=0 to the environment solved the problem.

So I create an eclipse_launcher file:

#!/bin/bash
export SWT_GTK3=0
/YOU/PATH/eclipse
like image 60
DevShark Avatar answered Oct 11 '22 09:10

DevShark