Answers for "tkinter default background color button"

12

tkinter background color

root.configure(background='black')
Posted by: Guest on November-23-2019
3

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')
Posted by: Guest on September-03-2020

Code answers related to "tkinter default background color button"

Python Answers by Framework

Browse Popular Code Answers by Language