how to change the color of a text in tkinter code example
Example 1: tkinter change label text color
label_name.configure(foreground="blue")
Example 2: how to change the text of a label in tkinter
def press():
Instruction.config(text='Button Pressed')