Change menubar color?

Juan Christian <[email protected]>
Newsgroups gmane.comp.python.tkinter
Message-ID <CAAp0bGuyPS7kFF_KX16APB6vF9bfqS4aN2CrenNs=MRnt1-9xQ@mail.gmail.com>
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
[email protected]
https://mail.python.org/mailman/listinfo/tkinter-discuss
image.png (image/png, 12.4 KB) - not displayed
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.