from Tkinter import * root = Tk() root.title("root") top = Toplevel(bg='red') top.title("toplevel") root.mainloop()