Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make Spyder use a dark theme for the entire interface

I am using spyder python 2.7 and i changed the syntax coloring in Spyder black theme, but i really want my python programme to look in full black, so WITHOUT the white windows.

Can someone provide me a good explanation about how to change this?

Python example of how i want it to be

like image 598
ninja Avatar asked Dec 30 '25 03:12

ninja


2 Answers

The complete dark theme is available from Spyder 4.0.0 beta https://github.com/spyder-ide/spyder/releases

How I did it :

1) In Anaconda prompt,

conda update qt pyqt
conda install -c spyder-ide spyder=4.0.0b2

2) And if you haven't done it before, go to

Tools > Preferences > Syntax Coloring
like image 74
KaHinCostner Avatar answered Dec 31 '25 17:12

KaHinCostner


If you can't wait for Spyder 4 - this is what does it for Spyder 3.3.2 in Windows, using Anaconda3.

  1. Exit Spyder
  2. Open command prompt or Anaconda prompt
  3. Run pip install qdarkstyle and exit the prompt
  4. Go to ...\Anaconda3\Lib\site-packages\spyder\utils and open qhelpers.py
  5. Add import qdarkstyle to the top of that file
  6. Replace the qapplication function definition with below code (only two added lines)
  7. Save and close the file
  8. Open Spyder and enjoy your dark theme

    def qapplication(translate=True, test_time=3):
        """
        Return QApplication instance
        Creates it if it doesn't already exist
    
        test_time: Time to maintain open the application when testing. It's given
        in seconds
        """
        if running_in_mac_app():
            SpyderApplication = MacApplication
        else:
            SpyderApplication = QApplication
    
        app = SpyderApplication.instance()
        if app is None:
            # Set Application name for Gnome 3
            # https://groups.google.com/forum/#!topic/pyside/24qxvwfrRDs
            app = SpyderApplication(['Spyder'])
            # Set application name for KDE (See issue 2207)
            app.setApplicationName('Spyder')
            app.setStyleSheet(qdarkstyle.load_stylesheet_pyqt5())
        if translate:
            install_translator(app)
    
        test_ci = os.environ.get('TEST_CI_WIDGETS', None)
        if test_ci is not None:
            timer_shutdown = QTimer(app)
            timer_shutdown.timeout.connect(app.quit)
            timer_shutdown.start(test_time*1000)
        return app
    
like image 24
Dr.Ripper Avatar answered Dec 31 '25 18:12

Dr.Ripper