Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

CTkColorPicker

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

CTkColorPicker

A modern color picker for customtkinter

  • 0.9.0
  • PyPI
  • Socket score

Maintainers
1

CTkColorPicker

A modern color picker made for customtkinter!

Screenshot

Download

pip install CTkColorPicker

GitHub repo size

Requirements

How to use?

import customtkinter as ctk
from CTkColorPicker import *

def ask_color():
    pick_color = AskColor() # open the color picker
    color = pick_color.get() # get the color string
    button.configure(fg_color=color)
    
root = ctk.CTk()

button = ctk.CTkButton(master=root, text="CHOOSE COLOR", text_color="black", command=ask_color)
button.pack(padx=30, pady=20)
root.mainloop()

Options

ArgumentsDescription
widthset the overall size of the color picker window
titlechange the title of color picker window
fg_colorchange forground color of the color picker frame
bg_colorchange background color of the color picker frame
button_colorchange the color of the button and slider
button_hover_colorchange the hover color of the buttons
textchange the default text of the 'OK' button
initial_colorset the default color of color picker (currently in beta stage)
slider_borderchange the border width of slider
corner_radiuschange the corner radius of all the widgets inside color picker
**other button parameterspass other button arguments if required

ColorPickerWidget

This is a new color picker widget that can be placed inside a customtkinter frame.

Screenshot 2023-05-17 191125

Usage

from CTkColorPicker import *
import customtkinter

root = customtkinter.CTk()
colorpicker = CTkColorPicker(root, width=500, command=lambda e: print(e))
colorpicker.pack(padx=10, pady=10)
root.mainloop()

Options

ArgumentsDescription
masterparent widget
widthset the overall size of the color picker frame
fg_colorchange forground color of the color picker frame
initial_colorset the default color of color picker (currently in beta stage)
slider_borderchange the border width of slider
corner_radiuschange the corner radius of all the widgets inside color picker
commandadd a command when the color is changed
orientationchange orientation of slider and label
**other slider parameterspass other slider arguments if required

That's all, hope it will help!

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc