I have a text widget with dark background and I can\'t see the cursor\'s position. Is there any way to change the (blinking) text cursor\'s color?
For python version 3
import tkinter as tk textfield = tk.Entry(root) textfield.configure(bg="#1C6C0B", insertbackground='white')