Font tkinter combobox

cb = ttk.Combobox(
  root,
  font=("TkDefaultFont", 14),
)
cb.grid()
Nervous Nightingale