tkinter change color of text 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()