diff --git a/visao/interface_gui.py b/visao/interface_gui.py index dce4c69..cdff20d 100644 --- a/visao/interface_gui.py +++ b/visao/interface_gui.py @@ -9,6 +9,7 @@ class interfaceGUI: self.root.title("Minha Janela") self.root.geometry("300x200") + self.root.configure(bg="#1e1e1e") # fundo escuro label = tk.Label(self.root, text="Texto", bg="#1e1e1e", fg="white") botao = tk.Button(self.root, text="OK", bg="#333333", fg="white")