I have this problem that tkinter wont let me change the bg color. I tried using the normal "white" or "blue", etc. I tried Hex-Code and RGB-Code. Nothing works and I am going crazy. The color also does not change when using widgets, so it is alwasy a dark screen, but I creates the widgets since I can see the cursor change or button show up when I am using a picture.
Even old tkinter programs wont work anymore since the screen stays black.
import tkinter as tk
window = tk.Tk()
window.config(bg="white")
window.mainloop()
So does anyone know what I am doing wrong or is it a problem with the IDE? I am going crazy here.