I would like to know the default window colour in Tkinter when you simply create a window:
root = Tk()
If there is one, it is possible to set w
I was trying to set a button's color to the system default. This is the best solution I've come across:
root.configure(background='SystemButtonFace')
Source: How to set default background colour tkinter