tkinter background color
root.configure(background='black')
text color tkinter
from Tkinter import *
def onclick():
pass
root = Tk()
text = Text(root)
text.insert(INSERT, "Hello.....")
text.insert(END, "Bye Bye.....")
text.pack()
text.tag_add("here", "1.0", "1.4")
text.tag_add("start", "1.8", "1.13")
text.tag_config("here", background="yellow", foreground="blue")
text.tag_config("start", background="black", foreground="green")
root.mainloop()
gui.configure(background="light green") in tkinter
gui.configure(background="light green")
tkinter color chart
# Standard colors include:
gray99 # white
black # black
lawn green # light green
# those are the main ones I use. The green is just to inspect frames for
# troubleshooting.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us