All Projects → vv9k → epick

vv9k / epick

Licence: GPL-3.0 license
Color picker for creating harmonic color palettes that works on Linux, Windows, macOS and web.

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to epick

Colorpicker
jQuery UI widget for color picking (similar to the one in Microsoft Office 2010).
Stars: ✭ 271 (+204.49%)
Mutual labels:  color-picker, colors, color-palette
SwiftColorWheel
Delightful color picker wheel for iOS in Swift.
Stars: ✭ 37 (-58.43%)
Mutual labels:  color-picker, colors, color-palette
Leonardo
Generate colors based on a desired contrast ratio
Stars: ✭ 973 (+993.26%)
Mutual labels:  color-picker, colors, color-palette
pantone-colors
Hex values of all 2310 Pantone colors
Stars: ✭ 147 (+65.17%)
Mutual labels:  color-picker, colors, color-palette
colors
A gorgeous, accessible color system.
Stars: ✭ 748 (+740.45%)
Mutual labels:  colors, color-palette
Colorpicker
Simple, maintained and highly customizable colorpicker library for Android.
Stars: ✭ 31 (-65.17%)
Mutual labels:  color-picker, color-palette
react-native-color-panel
React Native Color Panel Component for iOS and Android 🏳️‍🌈
Stars: ✭ 21 (-76.4%)
Mutual labels:  color-picker, color-palette
color-system
🎨 Easiest way to get a universal color palette
Stars: ✭ 21 (-76.4%)
Mutual labels:  colors, color-palette
vscode-color
Helper with GUI to generate color codes such as CSS color notations.
Stars: ✭ 88 (-1.12%)
Mutual labels:  color-picker, color-palette
pikko
Color picker for iOS made with ❤️
Stars: ✭ 34 (-61.8%)
Mutual labels:  color-picker, colors
tcolors
Commandline color picker and palette builder
Stars: ✭ 44 (-50.56%)
Mutual labels:  color-picker, color-palette
Colora
Color converter, screen color picker and color palettes for Windows
Stars: ✭ 32 (-64.04%)
Mutual labels:  colors, color-palette
Md Color Picker
Angular-Material based color picker
Stars: ✭ 253 (+184.27%)
Mutual labels:  color-picker, color-palette
react-native-image-color-picker
Image color picker based on image source provided and return image different color palettes or average color palette
Stars: ✭ 25 (-71.91%)
Mutual labels:  color-picker, color-palette
Androidphotoshopcolorpicker
A fully featured Color picker Library for Android
Stars: ✭ 220 (+147.19%)
Mutual labels:  color-picker, colors
Flexcolorpicker
Modern color picker library written in Swift 5 that can be easily extended and customized. It aims to provide great UX and performance with stable, quality code.
Stars: ✭ 164 (+84.27%)
Mutual labels:  color-picker, color-palette
ColorPicker
Powerful screen ColorPicker/Chooser application for Linux Desktop
Stars: ✭ 55 (-38.2%)
Mutual labels:  color-picker, color-palette
magento-grid-colors
Magento 2 Grid Colors module for colorizing admin grids. Supports saving of states with the help of grid's bookmarks.
Stars: ✭ 54 (-39.33%)
Mutual labels:  color-picker, colors
React Native Color Wheel
🌈 A react native reusable and color picker wheel
Stars: ✭ 137 (+53.93%)
Mutual labels:  color-picker, color-palette
Colorbook
🎨 Color schemes for UI design - Optimized for foreground, background, border, etc. https://liyasthomas.github.io/colorbook
Stars: ✭ 148 (+66.29%)
Mutual labels:  color-picker, color-palette

epick

Build Status

Color picker for creating harmonic color palettes that works on Linux, Windows, macOS and web.

Get it

You can checkout the web demo over here or get a native binary from the GitHub release page.

If you happen to use Arch Linux you can grab epick from AUR using your favorite package manager:

$ paru -S epick

Build

Install required libraries (only required on Linux):

$ apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev

To manually build epick you'll need the latest Rust with cargo. To build the project run:

$ make

To start the web version locally run:

$ make start_web

This will build the WASM files and start a simple http server listening at 127.0.0.1:8080.

To build without make checkout the build instructions in the Makefile

Demo

The gif might be outdated, to checkout the latest build of master branch head over to the web demo.

Demo GIF

Keyboard shortcuts

Here are some handy shortcuts to enhance the usage of epick:

  • Only supported with screen picker:
    • z to display zoomed window
    • p to pick a color from under the cursor
    • s to save a color from under the cursor
  • Other:
    • h toggle side panel

Custom color format

To fully customize the way the colors are presented textually on the screen and the way they are copied to clipboard, a simple formatting language has been introduced that resembles the syntax of rust formatting macros. Here is a simple example of such a formatting string:

"{r} {g} {b}"
// Same as
"{ r } {  g} {    b     }"

Above example shows how to display a value of a field. The name of the field is enclosed in curly braces and can contain multiple white space characters following the opening brace and preceeding the closing brace. This format string will print red, green and blue values of the color in the 0.0 ..= 1.0 range.

To specify the precision of a floating point number:

"{r:.2} {g:.0} {b:.4}"

To display a value in decimal, octal, hex or uppercase hex respectively:

"{lab_l:d} {r255:o} {g255:x} {b255:X}"

Using this flags on floating values will automatically truncate the fractional part and treat the number as an integer.

Supported color fields:

Field Color value Value range
r Red 0.0 ..= 1.0
g Green 0.0 ..= 1.0
b Blue 0.0 ..= 1.0
r255 Red 0 ..= 255
g255 Green 0 ..= 255
b255 Blue 0 ..= 255
cmyk_c Cyan 0.0 ..= 1.0
cmyk_m Magenta 0.0 ..= 1.0
cmyk_y Yellow 0.0 ..= 1.0
cmyk_k Key 0.0 ..= 1.0
cmyk_c100 Cyan 0.0 ..= 100.0
cmyk_m100 Magenta 0.0 ..= 100.0
cmyk_y100 Yellow 0.0 ..= 100.0
cmyk_k100 Key 0.0 ..= 100.0
hsl_h HSL Hue 0.0 ..= 1.0
hsl_s HSL Saturation 0.0 ..= 1.0
hsl_l HSL Light 0.0 ..= 1.0
hsl_h360 HSL Hue 0.0 ..= 360.0
hsl_s100 HSL Saturation 0.0 ..= 100.0
hsl_l100 HSL Light 0.0 ..= 100.0
hsv_h HSV Hue 0.0 ..= 1.0
hsv_s HSV Saturation 0.0 ..= 1.0
hsv_v HSV Value 0.0 ..= 1.0
hsv_h360 HSV Hue 0.0 ..= 360.0
hsv_s100 HSV Saturation 0.0 ..= 100.0
hsv_v100 HSV Value 0.0 ..= 100.0
lab_l Lab Light 0.0 ..= 100.0
lab_a Lab a -127.0 ..= 128.0
lab_b Lab b -127.0 ..= 128.0
luv_l Luv Light 0.0 ..= 100.0
luv_u Luv u -134.0 ..= 220.0
luv_v Luv v -140.0 ..= 122.0
lch_ab_l LCH(ab) Light 0.0 ..= 100.0
lch_ab_c LCH(ab) Chroma 0.0 ..= 270.0
lch_ab_h LCH(ab) Hue 0.0 ..= 360.0
lch_uv_l LCH(uv) Light 0.0 ..= 100.0
lch_uv_c LCH(uv) Chroma 0.0 ..= 270.0
lch_uv_h LCH(uv) Hue 0.0 ..= 360.0
xyy_x xyY x
xyy_y xyY y
xyy_Y xyY Y
xyz_x XYZ X
xyz_y XYZ Y
xyz_z XYZ Z

License

GPLv3

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].