I have searched here for this query, but I didn't find an answer for this except setting up the font size of widgets inside the Notebook
As I mentioned in the title, I would like to increase the font size of Tab header. For example,
transaction_book = ttk.Notebook(frame)
transaction_book.place(relwidth=0.6, relheight=0.79, relx=1, rely=0.21, anchor='ne')
#Make 1st tab
f1 = tk.Frame(transaction_book)
#Add the tab
transaction_book.add(f1, text="Tab one")
#Make 2nd tab
f2 = tk.Frame(transaction_book)
#Add 2nd tab
transaction_book.add(f2, text="Tab two")
transaction_book.select(f1)
In the above code, I would like to increase the Tab headers "Tab One" and "Tab Two" to a bigger size.
Kindly suggest if there is a way to achieve this.