How can I change Eclipse theme?

How can I change Eclipse theme?

Take a look at rogerdudler/eclipse-ui-themes . In the readme there is a link to a file that you need to extract into your eclipse/dropins folder.

When you have done that go to

Window -> Preferences -> General -> Appearance

And change the theme from GTK (or what ever it is currently) to Dark Juno (or Dark).

That will change the UI to a nice dark theme but to get the complete look and feel you can get the Eclipse Color Theme plugin from eclipsecolorthemes.org. The easiest way is to add this update URI to Help -> Install New Software and install it from there.

Eclipse Color Themes

This adds a Color Theme menu item under

Window -> Preferences -> Appearance

Where you can select from a large range of editor themes. My preferred one to use with PyDev is Wombat. For Java Solarized Dark

Update December 2012 (19 months later):

The blog post Jin Mingjian: Eclipse Darker Theme mentions this GitHub repo eclipse themes – darker:

enter

The big fun is that, the codes are minimized by using Eclipse4 platform technologies like dependency injection.
It proves that again, the concise codes and advanced features could be achieved by contributing or extending with the external form (like library, framework).
New language is not necessary just for this kind of purpose.


Update July 2012 (14 months later):

With the latest Eclipse4.2 (June 2012, Juno) release, you can implement what I originally described below: a CSS-based fully dark theme for Eclipse.
See the article by Lars Vogel in Eclipse 4 is beautiful – Create your own Eclipse 4 theme:

Eclipse

If you want to play with it, you only need to write a plug-in, create a CSS file and use the org.eclipse.e4.ui.css.swt.theme extension point to point to your file.
If you export your plug-in, place it in the “dropins” folder of your Eclipse installation and your styling is available.


Original answer: August 2011

With Eclipse 3.x, theme is only for the editors, as you can see in the site Eclipse Color Themes.
Anything around that is managed by windows system colors.
That is what you need to change to have any influence on Eclipse global colors around editors.

Eclipse 4 will provide much advance theme options: See Eclipse 4.0 – So you can theme me Part 1 and Eclipse 4.0 RCP: Dynamic CSS Theme Switching.

dark

How can I change Eclipse theme?

enter
My Theme plugin provide full featured customization for Eclipse 4.
Try it.
Visit Plugin Page

Related posts:

Leave a Reply

Your email address will not be published. Required fields are marked *