A basic customtkinter program - usable as a template
importcustomtkinter# Set the theme (choices: light, dark, system)customtkinter.set_appearance_mode("dark")# Set the default color mode - choices he showed: green, bluecustomtkinter.set_default_color_theme("blue")# Create the desktop window and call it appapp=customtkinter.CTk()# Add a title to the windowapp.title("Customtkinter App by Turtle Code")# Set the size of the window (widthxheight)app.geometry("500x500")app.mainloop()