I'm making a simple game using python and Tkinter. All works well, but I can't seem to change the appearance of the only button in the game (a RESET button on the bottom). It should be flat and blue with white text, to match the rest of the layout. This is the code i'm using now:
resetbutton = Button(root, text='RESET', width=15, command=sw.Reset, highlightbackground="blue", relief='flat')
resetbutton.grid(column=5, columnspan=3, row=13, rowspan=1)
... but the button still looks like the default one. Anyone got any ideas why this doesn't work?