Text Color Tkinter

[Solved] Text Color Tkinter | Php - Code Explorer | yomemimo.com
Question : tkinter change label text color

Answered by : the-rambling-lank

label_name.configure(foreground="blue")

Source : https://stackoverflow.com/questions/36520886/python-tkinter-change-of-label-color | Last Update : Thu, 05 Mar 20

Question : text color python tkinter

Answered by : sleepy-stoat-gz7aatn5bd9e

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

Source : | Last Update : Fri, 08 May 20

Answers related to text color tkinter

Code Explorer Popular Question For Php