Reputation: 37
I am new to the python language, and I have been learning tkinter. However I wonder how can I change the background of the box that pops up in tkinter.
import time
import tkinter
from tkinter import *
import sys
import os
root = tkinter.Tk()
Using this you get a grey box that pops up. How to I change the color of that box?
Upvotes: 1
Views: 4880
Reputation: 2230
Configure the root:
root.configure(background='red')
You can also directly assign it to the bg
property:
root['bg'] = 'red'
Upvotes: 5