Tkinter - Background

Tkinter allows you to customise the window in a range of ways, this example shows how you can change the back ground.
import tkinter as tk

mywindow = tk.Tk()

mywindow.configure(background="#512D6D")

mywindow.mainloop()