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

link|improve this question

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
1  
It is actually possible. – Abarax Oct 14 '08 at 0:27
2  
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
23  
There already is a site for this: eclipsecolorthemes.org – Thomas Ferris Nicolaisen Jan 26 '11 at 8:18
show 5 more comments
feedback

closed as not constructive by Robert Harvey Sep 26 '11 at 22:54

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

11 Answers

up vote 200 down vote accepted

Update The alternative better solution is the Eclipse Color Theme plugin. My method was in place until somebody created just this plugin. Thanks!


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

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

(Side note: On Linux/Mac, the directory is [workspace]/.metadata/.plugins/org.eclipse.core.runtime/.settings/, Thanks Scott)

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 theres here: (Alt. site 1, Alt. site 2)

Theme Gallery

Inkpot Inkpot

Sula (My theme) Sula (My theme)

Vibrant Ink Vibrant Ink

Wombat Wombat

Zenburn Zenburn

link|improve this answer
2  
Thanks this was useful ^^ – Alberto Zaccagni Jan 14 '10 at 18:04
1  
Awesome! I started to use a dark theme for my Linux Environment (KDE) and without this files I was not able to work with Eclipse because I couldnt see much :) Thanks – lostiniceland Jan 26 '10 at 12:42
5  
It's worth noting that on Linux/Mac installs of Eclipse, the path is actually: [workspace]/.metadata/.plugins/org.eclipse.core.runtime/.settings/ – Scott Anderson Jan 27 '10 at 1:26
3  
Any other download link? I couldn't figure out how to get them to download. – Jeff Brown Mar 22 '10 at 23:54
4  
There are plenty of better choises including some free source repositories like github.com. And thanks for themes. – Petr Gladkikh May 7 '10 at 4:28
show 13 more comments
feedback

A new service has just launched: Eclipse color themes. It applies one single color theme for the following editors and views: php, ant, sql, java, text, html, css, xml, console, javascript , cpp and more.

It supports themes handled by either direct import - .epf file - or by using the Eclipse Color Theme plugin.

Site screenshot

There is a how to import a theme page and there are already 22 themes listed. You can even create your own theme.

link|improve this answer
Very nice, will check this out. – demonkoryu Jan 27 '11 at 14:48
4  
This is by far the easiest and simplest way to install colour themes on Eclipse, that I've seen. This should be the accepted answer. +1. – gpmcadam Mar 1 '11 at 23:41
thanks that was what I was looking for some time. – systemsfault Mar 3 '11 at 12:15
Thanks - this is awesome! – GrahamMc Jul 11 '11 at 20:43
2  
Add color customization to any application and start tapping into peoples' creativity... 4199 themes listed now! – Michael Kjörling Oct 31 '11 at 9:32
feedback

I'm working on an Eclipse plugin to manage color themes:

http://github.com/eclipse-color-theme/eclipse-color-theme

There is an update site with an early alpha release that supports the plain text and Java editors. I'm currently in the procress of adding support for more editors, at least XML, HTML, CSS, JavaScript and C++. The currently included themes are Inkpot and Zenburn.

edit: The plugin supports tons of editors by now, and you can download more themes from http://eclipsecolorthemes.org.

link|improve this answer
the link gives 404? – nimcap Jan 7 '11 at 7:48
1  
Fixed the link, sorry :P – fhd Jan 7 '11 at 8:54
5  
By far the best solution to date. – Matty F Jan 30 '11 at 0:19
Great solution. – drozzy Feb 1 '11 at 5:51
feedback

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|improve this answer
That's awesome that you set this up. I've been secretly hoping someone would do this. Thanks! – John Stauffer Aug 6 '09 at 15:40
1  
How can I import the default settings? I used some of your themes, and want to turn it back to the default. – Alex Baranosky Oct 1 '09 at 22:40
I returned it to default using the method of the above answer. – Alex Baranosky Oct 1 '09 at 22:52
That was pure awesomeness, I was writing the script when I found this answer. I'm keeping all my .epf files under version control from this moment on... – Fernando Dec 30 '09 at 13:35
Much thanks for the Wombat scheme. It's my favorite Vim scheme. :) – demonkoryu Sep 21 '10 at 5:12
feedback

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|improve this answer
feedback

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


Update:

I never had time to turn Eclipse Pimp into something serious.

Apparently Eclipse Color Themes is the way to go :)

link|improve this answer
feedback

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|improve this answer
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 '09 at 0:34
feedback

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|improve this answer
feedback

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|improve this answer
This should be a comment on srand's answer, because this isn't an answer. – TreeUK Jun 9 '11 at 9:00
feedback

I loved the pre set themes. I am currently using SULA but I wasn't able to set the "hover" back ground color anywhere using the UI. With the default "yellow" 255,255,225(RGB) you are unable to see the SULA text correctly. I grep'ed the pref files for the "yellow" RGB values.

I found this file for CDT and my c++. I'm sure there will be other lang specific files to adjust.

CDT:

eclipse_workspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.cdt.ui.prefs

modify or add these these lines to file. RGB is the color format. Set to value which matches your "theme". I used the SULA theme (many thanks) and so I set the hover BG to black(0,0,0).

////// modified this line
sourceHoverBackgroundColor=0,0,0

///// had to add this line
sourceHoverBackgroundColor.SystemDefault=false

link|improve this answer
feedback

Your prompt: "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."

My answer: I am not sure whether I have a "great" theme for you but building on some experience writing a Vim colour scheme I have tried my hand at making one for Eclipse too. (It's still in its infancy, mind you, hence the v0.0.1.)

Feel free to use it if you like it (do keep the header with my e-mail in it so that I may receive feedback from users) and especially feel free to customise it if you wish, the structure in it should provide ample opportunity for personalisation. It's not a migration script per se but I think if you know your way around 's/colour1/colour2/g' you should be fine with just a template! It has stubs for:

  • Abstract Text Editor
  • C/C++ (CDT)
  • Build Console (CDT)
  • Java (JDT)
  • HTML (WST)
  • XML (WST)
  • CSS (WST)
  • JavaScript (JSDT)
  • Python (PyDev)
  • Subversion (Tigris) ... and more.

Let me know what you think if you use it...

PS: I almost forgot - here's a screenshot of it highlighting Java.

Java highlighting

link|improve this answer
feedback

protected by Bill the Lizard Jan 14 '11 at 12:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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