First I was trying only used:
missed_list_combobox.config(foreground="red")
Then I was trying to set new style:
style_missed_combobox = tkinter.ttk.Style()
style_missed_combobox.configure("Red.TCombobox", foreground="red")
And use it after create the combobox widget.
missed_list_combobox = tkinter.ttk.Combobox(frame4, state="readonly", width=32, style="Red.TCombobox")
missed_list_combobox.grid(row=2, column=3, padx=2, sticky="w", pady=3)
But same ...it's only change the color of the top element in the combobox... not the entire dropdown elements... how can i change the color text of all the dropdown element..?
Thanks in advance, eliran