Tkinter root configuration
To add a title to the root of TKinter, we do something like:
root = Tk()
root.title("<Title Text>")
root.configure(bg = "<color>")
My question is how to change the font size and font color of the title text. It felt like a simple requirement, but instead of changing the root background color, I can't seem to do anything.
Many thanks
+3
source to share