Image Post Reply to Color picker

Post a New Reply
Reply to thread: Color picker
Post Subject:
Post Icon:
Your Message:
Smilies
Smile Wink Cool Big Grin
Tongue Rolleyes Shy Sad
At Angel Angry Blush
Confused Dodgy Exclamation Heart
Huh Idea Sleepy Undecided
[get more]
Post Options:
Thread Subscription:
Specify the type of notification and thread subscription you'd like to have to this thread. (Registered users only)






Thread Review (Newest First)
Posted by Anonymous - 03-14-2025, 03:26 AM
(Code_Block)
#-----------START----------------

from tkinter import 
from tkinter import colorchooser 

#---------------- 
def click(): 
    color colorchooser.askcolor()       
    
print(color
    colorHex color[1
    print(colorHex
    window.config(bg=colorHex)  
#----------------

window Tk() 
window.geometry("600x400"
button Button(text="CodedSkills Color Chooser!",command=click)    
button
.pack() 
window.mainloop()  

#--------------END----------------