how to change tjhhe text co,or in Tk code example
Example: text color python tkinter
from tkinter import *
root=Tk()
l1=Label(root,text="hello world",fg="red").pack()
from tkinter import *
root=Tk()
l1=Label(root,text="hello world",fg="red").pack()