mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
slight change of blue theme colors
This commit is contained in:
parent
938efcd59b
commit
efbfd8a7f6
@ -10,8 +10,8 @@
|
||||
"entry_border": ["gray70", "gray32"],
|
||||
"entry_placeholder_text": ["gray52", "gray62"],
|
||||
"frame_border": ["#A7C2E0", "#5FB4DD"],
|
||||
"frame_low": ["gray89", "gray18"],
|
||||
"frame_high": ["gray84", "gray22"],
|
||||
"frame_low": ["gray90", "gray18"],
|
||||
"frame_high": ["gray87", "gray22"],
|
||||
"label": [null, null],
|
||||
"text": ["gray20", "gray90"],
|
||||
"text_disabled": ["gray60", "gray50"],
|
||||
|
@ -2,6 +2,8 @@ import tkinter
|
||||
import tkinter.ttk as ttk
|
||||
import customtkinter
|
||||
|
||||
customtkinter.set_appearance_mode("light")
|
||||
|
||||
root_tk = customtkinter.CTk()
|
||||
root_tk.geometry("1400x480")
|
||||
root_tk.title("CustomTkinter TTk Compatibility Test")
|
||||
@ -25,7 +27,7 @@ button_2.pack(pady=20, padx=20)
|
||||
|
||||
frame_3 = customtkinter.CTkFrame(master=root_tk)
|
||||
frame_3.grid(padx=20, pady=20, row=0, column=3, sticky="nsew")
|
||||
label_3 = customtkinter.CTkLabel(master=frame_3, text="CTkFrame Label", fg_color=("gray81", "gray15"))
|
||||
label_3 = customtkinter.CTkLabel(master=frame_3, text="CTkFrame Label", fg_color=("gray95", "gray15"))
|
||||
label_3.grid(row=0, column=0, columnspan=1, padx=5, pady=5, sticky="ew")
|
||||
button_3 = customtkinter.CTkButton(frame_3, text="CTkFrame")
|
||||
button_3.grid(row=1, column=0, padx=20)
|
||||
|
Loading…
Reference in New Issue
Block a user