Couleur de texte Python tkinter

from tkinter import *
root=Tk()
l1=Label(root,text="hello world",fg="red").pack()
Sleepy Stoat