Tkinter HTML colorpicker

Viewed 31

I'm programming a small GUI app that is using the standard colorpicker from Tkinter. this colorpicker only know's as an in put RGB and it will return Hexcode.

I was wondering is there an colorpicker in Tkinter like an HTML colorpicker (see screenshot) enter image description here

1 Answers

the only colorpicker for tkinter is the askcolor from tkinter.colorchooser

Related