Answers for "no color tkinter"

12

change background color of tkinter

root.configure(background='black')
Posted by: Guest on November-23-2019
3

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()
Posted by: Guest on March-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language