I\'m writing a slideshow program with Tkinter, but I don\'t know how to change the background color to black instead of the standard light gray. How can this be done?
config is another option:
widget1.config(bg='black') widget2.config(bg='#000000')
or:
widget1.config(background='black') widget2.config(background='#000000')