Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ctk-color-picker-alpha
Advanced tools
A special color picker that supports picking transparent color (8-digits hex code)
pip install ctk-color-picker-alpha
import customtkinter as ctk
from ctk_color_picker_alpha import *
def ask_color():
pick_color = AskColor() # open the color picker
color = pick_color.get() # get the color string
print(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()
Arguments | Description |
---|---|
width | set the overall size of the color picker window, always greater than 300 pixels |
title | change the title of color picker window |
fg_color | change foreground color of the color picker frame |
bg_color | change background color of the color picker frame |
button_color | change the color of the button and slider |
button_hover_color | change the hover color of the buttons |
text | change the default text of the 'OK' button |
initial_color | set the default color of color picker (currently in beta stage) |
slider_border | change the border width of slider |
corner_radius | change the corner radius of all the widgets inside color picker |
enable_previewer | if True, display the color previewer |
enable_alpha | if True, enable 8-digits hex code and transparency. Otherwise, use 6-digits hex code and disable transparency |
allow_hexcode_modification | if True, enable modifications to hex code textbox |
enable_random_button | if True, display the 'Random' button |
**other button parameters | pass other button arguments if required |
This is a new color picker widget that can be placed inside a customtkinter frame.
from ctk_color_picker_alpha import *
import customtkinter
root = customtkinter.CTk()
colorpicker = CTkColorPicker(master=root)
colorpicker.pack(padx=10, pady=10)
root.mainloop()
Arguments | Description |
---|---|
master | parent widget |
width | set the overall size of the color picker window, always greater than 300 pixels |
title | change the title of color picker window |
fg_color | change foreground color of the color picker frame |
bg_color | change background color of the color picker frame |
button_color | change the color of the button and slider |
button_hover_color | change the hover color of the buttons |
text | change the default text of the 'OK' button |
initial_color | set the default color of color picker (currently in beta stage) |
slider_border | change the border width of slider |
corner_radius | change the corner radius of all the widgets inside color picker |
enable_previewer | if True, display the color previewer |
enable_alpha | if True, enable 8-digits hex code and transparency. Otherwise, use 6-digits hex code and disable transparency |
allow_hexcode_modification | if True, enable modifications to hex code textbox |
enable_random_button | if True, display the 'Random' button |
**other button parameters | pass other button arguments if required |
Forked from https://github.com/Akascape/CTkColorPicker
FAQs
An eight-digits hex code color picker, with alpha value.
We found that ctk-color-picker-alpha demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.