import tkinter as tk

root = tk.Tk()
text = tk.Text(root, wrap='word')
text.insert('1.0', '<font color="red">Red text</font> and <font color="blue">blue text</font>')
text.tag_configure("red", foreground='red')
text.tag_configure("blue", foreground='blue')
text.pack()
root.mainloop()