interface GUI

This commit is contained in:
Emersonjsc 2025-06-17 10:52:25 -03:00
parent a7cfcbd70e
commit 1878c1da7c
1 changed files with 1 additions and 0 deletions

View File

@ -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")