Why is Eclipse Luna dark theme ugly?

Eclipse luna ships with an integrated dark theme, I downloaded Eclipse CDT and deleted my workspace to reset Eclipse configuration.

I switched to the dark theme and restarted Eclipse; the UI doesn't look like expected:enter image description here

I also have checked for updates within Eclipse (no update found) The theme is supposed to look like the screenshots in the link.

4

3 Answers

Fix text editor colors:

Help > Eclipse Marketplace > Search for "Eclipse Color Theme" and install it.

Then go to: Windows > Preferences > General > Appearance > Color Theme

Fix text boxes colors:

Open a terminal and run

export SWT_GTK3=0

Then start Eclipse :

eclipse

The user interface should be fixed. If this worked for you edit the eclipse launch script for more convenience:

sudo gedit /usr/bin/eclipse

Add

export SWT_GTK3=0

Before:

ECLIPSE=/usr/lib/eclipse/eclipse

Source:

1

The editor issue should be fixed with Eclipse 4.4.1. On of the Eclipse plug-ins was affecting the styling of the editor.

2

I had problems with a dark theme also. You can try the following:

go to: Windows>Preferences>General>Appearance

and disable: Enable Theming

It might help!

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like