Is there a simple way to change the color of a text in a button?
I use button['text'] = 'input text here' to change what the button text will be after the push. Does something similar exist for the change of color, button['color'] = 'red'?
Is there a simple way to change the color of a text in a button?
I use button['text'] = 'input text here' to change what the button text will be after the push. Does something similar exist for the change of color, button['color'] = 'red'?
Use the foreground option to set a color of the text in a button.
Example:
button.configure(foreground="red")