I have this simple code: from tkinter import *
root = Tk() root.title("Steam Trader") root.minsize(500, 800) root.maxsize(500, 0) menubar = Menu(root) filemenu = Menu(menubar, tearoff=0) filemenu.add_command(label="Open", command=None) filemenu.add_command(label="Save", command=None) menubar.add_cascade(label="File", menu=filemenu) root.config(bg='#2A2C2B', menu=menubar) root.mainloop() And I want to change the menu color, is it possible? [image: Inline image 1]
_______________________________________________ Tkinter-discuss mailing list Tkinter-discuss@python.org https://mail.python.org/mailman/listinfo/tkinter-discuss