Skip to content Skip to sidebar Skip to footer

Change Color Of Single Word In Tk Label Widget

I would like to change the font color of a single word in a Tkinter label widget. I understand that something similar to what I would like to be done can be achieved with a Text wi

Solution 1:

You cannot do what you want. A label supports only a single foreground color and a single background color. The solution is to use a text or canvas widget., or to use two separate labels.


Post a Comment for "Change Color Of Single Word In Tk Label Widget"