from tkinter import * import random class ColourChallenge: def __init__(self, parent): # Create a Frame to hold your colour examples # Create a label with your name. Format it so that it has # 'dark green' text and a 'lawn green background # Create an entry box which has an orange background # html code #ffe972 # Create a red 'quit' button with white text that says "quit" # You get bonus points if you can add the code needed to # make the 'quit' button functional # main routine if __name__ == "__main__": root = Tk() root.title("Colour Challenge") something = ColourChallenge(root) root.mainloop()