diff --git a/complex_example_other_style.py b/complex_example_other_style.py index 2552e20..d3388d9 100644 --- a/complex_example_other_style.py +++ b/complex_example_other_style.py @@ -2,7 +2,7 @@ import tkinter import tkinter.messagebox import customtkinter -customtkinter.set_appearance_mode("System") # Other: "Light", "Dark" +customtkinter.set_appearance_mode("Dark") # Other: "Light", "System" class App(tkinter.Tk): diff --git a/simple_test.py b/simple_test.py index cc2247e..087a572 100644 --- a/simple_test.py +++ b/simple_test.py @@ -2,7 +2,7 @@ import tkinter import customtkinter # <- import the CustomTkinter module customtkinter.enable_macos_darkmode() -customtkinter.set_appearance_mode("System") # Other: "Dark", "System" (only macOS) +customtkinter.set_appearance_mode("System") # Other: "Dark", "Light" root_tk = tkinter.Tk() # create the Tk window like you normally do root_tk.geometry("400x240")