altamont
altamont

Reputation: 463

Tkinter root configuration

For adding a title to the TKinter root, we do something like:

root = Tk()
root.title("<Title Text>")
root.configure(bg = "<color>")

My question is how do we change the font size and font color of the Title Text. Seemed to me to be a simple requirement, but other than changing the background color of root, I don't seem to be able to do anything more.

Many Thanks

Upvotes: 3

Views: 2676

Answers (1)

Bryan Oakley
Bryan Oakley

Reputation: 385980

You can't change the title font or size via tkinter. Tkinter has no control over how the window manager / os decorates the program.

Upvotes: 2

Related Questions