CustomTkinter
CustomTkinter copied to clipboard
i cant change theme in option menu
i need update for option menu to change theme backgrounde
By default, customtkinter allows only one theme at a time.
If you want to give multiple options to the user, create separate json files and then set them as theme using the following function:
customtkinter.set_default_color_theme("dark-blue")
Although, this might be built in and @TomSchimansky should look into this issue.
Helpful links:
-
Themes: https://customtkinter.tomschimansky.com/documentation/color
-
Packing with themes: https://customtkinter.tomschimansky.com/documentation/packaging
Regards.