set background color in python tkinter code example
Example 1: set background colour tkinter
window_name.configure(background='black')
Example 2: how to change button background color while clicked tkinter python
#Type "activebackground=" + your chosen background color between commas
col = Button(yourWindow, text='col', bg='gray25', activebackground='cyan')