joonro / Spyder-Color-Themes

Color Themes for Spyder (https://github.com/spyder-ide/spyder)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Color Schemes for Spyder

Color schemes for Spyder.

Theme List

How to install

  1. Choose one of the themes in this repository according to the theme list above.
  2. Locate the theme’s ColorSchemeName.ini file in this repository. For example, tomorrow.ini.
  3. With Spyder closed, open ~/.spyder-py3/spyder.ini.
  4. Find [color_schemes] section. Add ColorSchemeName to the names list. For example:
    [color_schemes]
    names = ['emacs', 'idle', 'monokai', 'pydev', 'scintilla', 'solarized/dark', 'solarized/light', 'spyder', 'spyder/dark', 'tomorrow', 'zenburn']
        
  5. 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'
        
  6. The new color scheme will be available in the Tools -> Preferences -> Syntax coloring.

About

Color Themes for Spyder (https://github.com/spyder-ide/spyder)