vote up 31 vote down star
19

I am a recovering Emacs user, who is trying to ease into Eclipse usage. (Since I'm encouraging the rest of the team to use it, I guess I should at least try to get along).

My current excuse is that it hurts my eyes. I'm currently using the excellent zenburn theme in emacs, and would love to find it for eclipse. However, I find that changing my color theme every few months makes for a great way to procrastinate, so ideally I'd like to find a repository for eclipse color themes.

There don't appear to be any eclipse themes indexed by Google, so all the great themes must be sitting on your hard disk somewhere. Please share them.

Thanks

flag

80% accept rate
2  
Why did you accept larsivi's answer? It is not an answer to your question. – Nathan Feger Sep 23 '08 at 4:19
I read it as an answer stating: "It's not possible" – John Stauffer Oct 10 '08 at 13:37
It is actually possible. – Abarax Oct 14 '08 at 0:27
Abarax - If it's possible, then please post how, and I'll select your answer as accepted. – John Stauffer Nov 26 '08 at 17:21
I too would like to be able to adjust the default colour scheme in Eclipse. The black on white default drives me a bit crazy. I don't have the patience to make make all of the hundreds of adjustments necessary to make my own theme but would love to use someone elses – Matty Dec 2 '08 at 16:55
show 1 more comment

8 Answers

vote up 25 vote down check

I just found an alternative way of importing/exporting themes from Eclipse that is relatively easier (doesn't require manual editing of a file) and wrote an article.

Essentially there are two files we want to copy or overwrite:

[workspace]\.metadata.plugins\org.eclipse.core.runtime.settings\org.eclipse.jdt.ui.prefs

[workspace]\.metadata.plugins\org.eclipse.core.runtime.settings\org.eclipse.ui.editors.prefs

where,

org.eclipse.jdt.ui.prefs = Syntax Coloring

org.eclipse.ui.editors.prefs = Text Editors

I converted anonfunc's themes from http://eclipsecolorthemes.jottit.com/ into the new format. Also I created my own :)

Finally, if somebody wants to create more themes I can post them on my blog with credits. Here are some color schemes ideas to get you going.

Download all themes here

Theme Gallery

Inkpot Inkpot

Sula (My theme) Sula (My theme)

Vibrant Ink Vibrant Ink

Wombat Wombat

Zenburn Zenburn

link|flag
vote up 5 vote down

I've posted some color schemes and an example script to extract them from Eclipse's preference files at http://eclipsecolorthemes.jottit.com/

Essentially, I'm treating an subset of the Eclipse preferences as a color scheme, and using Eclipse's import functionality to apply the colors.

Saving a color scheme involves exporting all preferences and then removing non-color settings.

link|flag
That's awesome that you set this up. I've been secretly hoping someone would do this. Thanks! – John Stauffer Aug 6 at 15:40
How can I import the default settings? I used some of your themes, and want to turn it back to the default. – GordonG Oct 1 at 22:40
I returned it to default using the method of the above answer. – GordonG Oct 1 at 22:52
vote up 3 vote down

Here's a guy who posted his eclipse preferences.

http://blog.codefront.net/2006/09/28/vibrant-ink-textmate-theme-for-eclipse/

I just imported the above file. It was painless.

Setting up your own color theme in Flex Builder (which is, I think, built on top of Eclipse, I think) is pretty tedious. I'd recommend looking for a preferences file to import, at least as a starting point.

link|flag
vote up 2 vote down

It is possible to import/export colour themes in Eclipse:

File -> Import -> General -> Preferences File -> Export -> General -> Preferences

At this time I am also searching for themes, but I cannot find any.

link|flag
Oh my gosh! The last time I tried to find a way to import/export particular settings, there was no support for this. I'm glad to see that there is now. – Mike Daniels Aug 5 at 0:34
vote up 1 vote down

Is it possible to properly store and export/import colour themes in Eclipse? I believe this was not possible when I tried a couple of years back, and I've copied some obscure meta folder over to new machines since then. These metadata are per workspace, but I suppose they can be copied enough to be considered a "theme". FWIW, my scheme is not perfect as it just is/was too cumbersome to make finish it. In addition it was hard/impossible to make the rest of the GUI follow suit (background/foreground in lists, editors, etc). My scheme is inspired by the koehler scheme for vim.

link|flag
vote up 1 vote down

Just wanted to note that it seems that color themes are language-specific, that is, Eclipse-CDT (for C/C++ Development) has different theme files than Eclipse-JDT (for Java Development), etc.

So far, these have been JDT themes, but since you didn't specify your language, I figure I'd throw in a link for a CDT theme.

Consider the Eclipse-CDT Theme Generator here: http://blog.edwards-research.com/2009/11/color-schemes-for-eclipse-cdt-4/

link|flag
vote up 0 vote down

First off thank you srand for your troubles, the Zenburn theme has really helped my eyes during late night programming.

That being said though I do want to point out a couple of things:

1 - The file [org.eclipse.jdt.ui.prefs] does not just contain color attributes and replacing it might overwrite other settings (for me it overwrote "spelling_user_dictionary=/dicts/eclipseDict.txt" and "breadcrumb.perspective=true", besides other values)

2 - The Compare editor for some of the themes makes it very difficult to see the difference between two files (especially if it's a normal text file like).

3 - Some files get really strange colors, for me the SQL files became quite unreadable.

My solution is just to copy the themes for those iknowexactlywhattochangeandwhere programming rushes and then change it back when I'm casually updating files here and there.

Hope the developers at Eclipse take heed to our whinings and make a theme editor (fingers crossed)

Cheers

link|flag
vote up 0 vote down

I've started proof of concept plug-in that manages color themes.

It's called Eclipse Pimp, and it's free software (3-clause BSD license).

Pimp is in early development and it isn't really usable yet.

http://bitbucket.org/goj/eclipse-pimp/wiki/Home

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.