#Kaveh Sabouri
from tkinter import *
from tkinter import colorchooser
window=Tk()
window.title("Color chooser")
window.geometry("500x500")
window.config(bg="lavender")
def choose():
color=colorchooser.askcolor()
colorHex=color[1]
window.config(bg=colorHex)
la243=Label(text="Your Hex color is:",font=("Lalezar",25),bg=colorHex)
la243.place(x=60,y=20)
lco=Label(window,text=colorHex,font=("Lalezar",25),bg=colorHex)
lco.place(x=300,y=20)
btn1=Button(text="Chosse color",font=("",23),bg="#fc8803",command=choose)
btn1.place(x=145,y=224)
window.mainloop()`
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)