from tkinter import *
root = Tk()
root.geometry("500x420")
text = Text()
text.configure(fg="white",font=["Consolas",11],width=1000,height=1000,bg="#404040")
text.pack()
text.tag_add('title',1.0,'как красить все')
text.tag_config('title',foreground="blue")
root.mainloop()