Skip to content

Instantly share code, notes, and snippets.

@thecjharries
Created February 11, 2018 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thecjharries/8a4ecf94d2b43564d9b87815a3d1de55 to your computer and use it in GitHub Desktop.
Save thecjharries/8a4ecf94d2b43564d9b87815a3d1de55 to your computer and use it in GitHub Desktop.
Quick demo for an SO thread
try:
from tkinter import Button, Tk
except ImportError:
from Tkinter import Button, Tk
MASTER = Tk()
MASTER.wm_title("Color Demo")
MASTER.attributes('-type', 'utility')
MASTER.configure(background='#272822')
Button(
MASTER,
text="Exit",
command=MASTER.destroy,
background='#48483E',
foreground='#CFD0C2'
).pack()
MASTER.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment