For changing the default colors, there are some places that you have to look through in the window > preferences menu:
- General > Editors > Text Editors (to set the background color / selection color, etc. for all editors)
- General > Editors > Text Editors > Annotations (to set the colors for the occurrences highlight, tasks, etc.)
- Pydev > Editor (to set the pydev editor-related colors)
- General > Appearance > Colors an Fonts (to set what's not available in the other places)
To do that, go to File > Export > Preferences and export all the preferences to a file, then, open that file and remove all the non-color related preferences (except the file_export_version, which Eclipse requires when doing the import) -- note that you can keep other preferences you enter all the time too, and it might be easier doing it with a clean Eclipse install just with what you want to config (so that you don't have too many preferences in that preferences file).
Later, you can import those preferences in Eclipse through File > Import > Preferences.
The preferences for the dark theme I'm using gives the result below (note that you may have to restart Eclipse so that the left ruler looks correct):

This can be reproduced by saving the contents below in a 'dark_theme.epf' file (the extension stands for eclipse preferences file) and importing it.
file_export_version=3.0
/instance/org.python.pydev/BACKQUOTES_COLOR=255,255,255
/instance/org.python.pydev/COMMENT_COLOR=153,51,204
/instance/org.python.pydev/CODE_COLOR=255,255,255
/instance/org.python.pydev/NUMBER_COLOR=204,255,51
/instance/org.python.pydev/CLASS_NAME_COLOR=255,204,0
/instance/org.python.pydev/KEYWORD_COLOR=255,102,0
/instance/org.python.pydev/SELF_COLOR=255,255,0
/instance/org.python.pydev/FUNC_NAME_COLOR=255,204,0
/instance/org.eclipse.ui.editors/AbstractTextEditor.Color.SelectionForeground.SystemDefault=false
/instance/org.eclipse.ui.editors/AbstractTextEditor.Color.Background.SystemDefault=false
/instance/org.eclipse.ui.editors/AbstractTextEditor.Color.Background=0,0,0
/instance/org.eclipse.ui.editors/AbstractTextEditor.Color.Foreground.SystemDefault=false
/instance/org.eclipse.ui.editors/AbstractTextEditor.Color.Foreground=255,255,255
/instance/org.eclipse.ui.editors/AbstractTextEditor.Color.SelectionBackground.SystemDefault=false
/instance/org.eclipse.ui.editors/AbstractTextEditor.Color.SelectionBackground=0,0,136
/instance/org.eclipse.ui.editors/pydevOccurrenceIndicationColor=128,64,0
/instance/org.eclipse.ui.editors/lineNumberColor=255,255,255
/instance/org.eclipse.ui.editors/printMargin=true
/instance/org.eclipse.ui.editors/printMarginColor=255,0,0
/instance/org.eclipse.ui.editors/currentLineColor=70,70,70
/instance/org.eclipse.ui.editors/currentIPTextStyle=BOX
/instance/org.eclipse.ui.editors/currentIPIndication=true
/instance/org.eclipse.ui.editors/currentIPHighlight=false
/instance/org.eclipse.ui.editors/secondaryIPTextStyle=DASHED_BOX
/instance/org.eclipse.ui.editors/secondaryIPHighlight=false
/instance/org.eclipse.ui.editors/secondaryIPIndication=true
Update: Added the debug call stack and debug current line annotations to appear as dashed box and box.
11 comments:
Thanks for sharing this Fabio.
In my Eclipse 3.5 the background of the code folding vertical area is still white after applying the .epf file. Is there another line to add to these settings?
Just to confirm, did you restart Eclipse after that? (as I pointed in the blog post, here it has only shown things correctly after I've restarted)
Ah, my bad. I Didn't read your post carefully. After restarting everything works great.
truly awesome! I was looking for such dark theme long time, thanks for sharing!!! Just one thing bothers me:( its when debugging, highlighted line is too light
http://img222.imageshack.us/img222/2369/snap1v.png
I can't seem to find where to adjust it:( can you help me please?
Alec
Those can be found at the annotations (the blog post has details on getting to those). It's the "Debug Call Stack" and "Debug Current Instruction Pointer" -- I'm going to update the post so that the post so that the theme has those as "Dashed Box" and "Box" (instead of highlighted)
thank you very much! awesome theme with every day I like it more and more;)
check out my dark eclipse theme http://blog.prabir.me/post/Dark-Eclipse-Theme.aspx
nice...i like the theme...just one problem...the highlighting foreground color on my system was black and with the background being dark blue it was impossible to read what I was highlighting...I set the selection foreground color to white and looks great
i have eclipse 3.5.1...
i dont have pydev.
how do i import preferences. I seem to be doing something wrong because this doesnt work for me... :(
If file > import > preferences is not working for you I'm not sure what could be wrong... Asking at the eclipse forum/bugs might yield a better response for that.
Thank you very much
Post a Comment