how to change tkinter window background color code example
Example 1: set background colour tkinter
window_name.configure(background='black')
Example 2: gui.configure(background="light green") in tkinter
gui.configure(background="light green")
Example 3: python tkinter change color of main window
new_window.config(bg = "red")