python tkinter on button click change color code example
Example: 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')