From 867e9a99f6a71421526ce156f98e889427b4a477 Mon Sep 17 00:00:00 2001 From: Tom Schimansky Date: Fri, 5 Mar 2021 22:08:50 +0100 Subject: [PATCH] color changes --- complex_example_other_style.py | 2 +- simple_test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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")