Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
February 21, 2022 05:38 pm GMT

How to make a Color chooser in python with tkinter.

`#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()`


Original Link: https://dev.to/kavehsabouri/how-to-make-a-color-chooser-in-tkinter-with-python-48ob

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To