python 3 how to set text color in photo image widget 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()