How to increase the font size of Tab header in tkinter Notebook? [duplicate] How to increase the font size of Tab header in tkinter Notebook? [duplicate] tkinter tkinter

How to increase the font size of Tab header in tkinter Notebook? [duplicate]


Easiest solution is,

    style = ttk.Style()    style.configure('TNotebook.Tab', font=('URW Gothic L','15','bold'), padding=[10, 10])    transaction_book = ttk.Notebook(frame)    transaction_book.place(relwidth=0.6, relheight=0.80, relx=1, rely=0, anchor='ne')