By default like any other UI you work with, the default color of the text is black, if you want to change it to some other in Tkinter then you need to use the argument - foreground. Let's see an example,
from tkinter import *
window = Tk()
# Changed the color of my black from black to green
my_label_example = Label(window, text='This is my text', foreground='green')
my_label_example.pack()
window.mainloop()
⛏️ You can also use a short-form of this attribute: example: fg='#2848273'
Output:⛏️ You can use color names such as - black, white, green, yellow, orange, etc.
⛏️ You can also use hex color code just like you may use with HTML or CSS: Example: #eeeeee, #202020
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!