问题 I'm trying to get rid of the white border around the OptionMenu . What I tried I changed the colour to red, but there is still a white border around it. Can anyone help? Here's the code: from tkinter import * import tkinter as tk from tkinter import ttk root = tk.Tk() root.geometry('500x500') var = StringVar() option = ttk.OptionMenu(root,var,'1','2','3') option["menu"].config(bg="red") option.pack() root.mainloop() Also, is there a way to change the colour of the OptionMenu trigger box (In