You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
473 B
9 lines
473 B
from .theme_manager import ThemeManager
|
|
|
|
# load default blue theme
|
|
try:
|
|
ThemeManager.load_theme("blue")
|
|
except FileNotFoundError as err:
|
|
raise FileNotFoundError(f"{err}\n\nThe .json theme file for CustomTkinter could not be found.\n" +
|
|
f"If packaging with pyinstaller was used, have a look at the wiki:\n" +
|
|
f"https://github.com/TomSchimansky/CustomTkinter/wiki/Packaging#windows-pyinstaller-auto-py-to-exe")
|
|
|