from tkinter import * root = Tk() button = Button(root, bg='red') # Background color = red button.pack() root.mainloop