Adding Customized Color Theme in PySimpleGUI Last Updated : 05 Aug, 2020 Comments Improve Suggest changes Like Article Like Report PySimpleGUI allows users to choose Themes for its Theme list. Also, it allows users to specify and customize the Theme according to their choice. The User only should know the Color shades i.e the hex codes of the Colors. Accordingly, he/she can customize the Theme by new Colors. Example: Python3 import PySimpleGUI as sg # Add your new theme colors and settings sg.LOOK_AND_FEEL_TABLE['MyCreatedTheme'] = {'BACKGROUND': '# 000066', 'TEXT': '# FFCC66', 'INPUT': '# 339966', 'TEXT_INPUT': '# 000000', 'SCROLL': '# 99CC99', 'BUTTON': ('# 003333', '# FFCC66'), 'PROGRESS': ('# D1826B', '# CC8019'), 'BORDER': 1, 'SLIDER_DEPTH': 0, 'PROGRESS_DEPTH': 0, } # Switch to use your newly created theme sg.theme('MyCreatedTheme') # Call a popup to show what the theme looks like sg.popup_get_text('This how the MyNewTheme is created') Output: Comment More infoAdvertise with us Next Article Adding Customized Color Theme in PySimpleGUI V vigneshsuresh4499 Follow Improve Article Tags : Python Programming Language Python Programs Python-gui Practice Tags : python Similar Reads Themes in PySimpleGUI Themes are used for designing Beautiful windows. It gives the user a choice to showcase his creativity on the GUI with colors. Coloring the GUI window can be accomplished with 1 line of code. sg.theme('Dark Amber 5')Note: Dark Amber is the name of the Theme and 5 is the version or the patch. We make 3 min read How to add color breezing effect using pygame? Pygame is a python library that can be used specifically to design and build games. Pygame supports only 2d games that are built using different sprites. Pygame is not particularly best for designing games as it is very complex to use and doesnât have a proper GUI like unity but it definitely builds 2 min read Python terminal processing with TerminalDesigner module In this article, we'll look at how to use TerminalDesigner to produce colorful text for the terminal in Python. This module is quite compact. This module can be used to change the font's color, style, and background, print images onto terminals for video playback, convert images to ASCII art and ser 8 min read Themes and Color Palettes in KivyMD KivyMD is an extension of the Kivy framework. KivyMD is a collection of Material Design widgets for use with Kivy, a GUI framework for making mobile applications. It is similar to the Kivy framework but provides a more attractive GUI. In this article, we are going to see themes and color palettes in 3 min read Exploring Color Customization in Tkinter One of the key elements in designing attractive and user-friendly interfaces is the use of Tkinter colors. In this article, we'll discuss the various aspects of using colors in Tkinter applications, covering syntax, code examples, and practical implementations. How to Change Color Tkinter? Tkinter c 6 min read Like