Created
February 11, 2018 11:33
-
-
Save thecjharries/8a4ecf94d2b43564d9b87815a3d1de55 to your computer and use it in GitHub Desktop.
Quick demo for an SO thread
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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