Color schemes for Spyder.
- Github
- Tomorrow theme:
- Tomorrow
- Tomorrow Night
- Atom One Dark (based on Github’s Atom Text Editor)
- Choose one of the themes in this repository according to the theme list above.
- Locate the theme’s
ColorSchemeName.ini
file in this repository. For example,tomorrow.ini
. - With Spyder closed, open
~/.spyder-py3/spyder.ini
. - Find
[color_schemes]
section. AddColorSchemeName
to the names list. For example:[color_schemes] names = ['emacs', 'idle', 'monokai', 'pydev', 'scintilla', 'solarized/dark', 'solarized/light', 'spyder', 'spyder/dark', 'tomorrow', 'zenburn']
- Append your chosen color scheme settings from the
ColorSchemeName.ini
file in this repositiory to the end of[color_schemes]
section. For example:... custom_names = [] solarized/light/occurrence = #ffff99 solarized/dark/occurrence = #ffff99 tomorrow/name = Tomorrow tomorrow/background = '#fafafa' tomorrow/currentline = '#efefef' tomorrow/occurrence = '#d6d6d6' tomorrow/ctrlclick = '#4271ae' tomorrow/sideareas = '#efefef' tomorrow/matched_p = '#d6d6d6' tomorrow/unmatched_p = '#ff9999' tomorrow/normal = ('#4d4d4c', False, False) tomorrow/keyword = ('#8959a8', False, False) tomorrow/builtin = ('#c82829', False, False) tomorrow/definition = ('#4d4d4c ', True, False) tomorrow/comment = ('#8e908c', False, True) tomorrow/string = ('#718c00', False, False) tomorrow/number = ('#f5871f', False, False) tomorrow/instance = ('#3e999f', False, True) tomorrow/currentcell = '#ffffff'
- The new color scheme will be available in the
Tools
->Preferences
->Syntax coloring
.