Does anyone have any insight on this? I already made a style for the notebook background so i tried doing the same with the combo box brackground but it doesnt work. This is what i have.
combostyle = ttk.Style()
combostyle.theme_create('custom_style',
parent='alt',
settings={'TCombobox':
{'configure':
{'selectforeground': 'white',
'selectbackground': '#1a2228',
'fieldforeground': 'white',
'fieldbackground': '#1a2228',
'background': '#1a2228'
}
}
}
)
combostyle.theme_use('custom_style')
root.option_add('*TCombobox*Listbox*Background', '#1a2228')
root.option_add('*TCombobox*Listbox*Foreground', 'white')
SCREENSHOTS