label_name.configure(foreground="blue")
Here is what the above code is Doing:
1. We’ve created a Label widget, and assigned it to the variable label_name.
2. We’ve configured the text of the label to be “Hello, Tkinter!”
3. We’ve configured the foreground color of the label to be blue.