0
How do I change the color of a label to make the background black and the letters white ?
I researched and what I found was the option to change the background to black however beyond the label background also changed the color of the letters.
The code I’m currently using is:
text1 = tk.Label(text='texto teste', background='black')
But this way everything turns black and consequently does not appear since my application has black background.
Here the shape that stays using red as an example:
It worked, thank you.
– Filipe Gonçalves