All Projects → Madrapps → Pikolo

Madrapps / Pikolo

Licence: apache-2.0
An android color picker library

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Pikolo

react-color
🎨 Is a tiny color picker widget component for React apps.
Stars: ✭ 50 (-64.79%)
Mutual labels:  color, slider, color-picker
Vanilla Colorful
A tiny color picker custom element for modern web apps (2.7 KB) 🎨
Stars: ✭ 467 (+228.87%)
Mutual labels:  color, color-picker
Chromacolorpicker
🎨 An intuitive iOS color picker built in Swift.
Stars: ✭ 434 (+205.63%)
Mutual labels:  color, color-picker
Kallewheel
A custom color wheel extension for Adobe Photoshop
Stars: ✭ 16 (-88.73%)
Mutual labels:  color, color-picker
Colorpicker
jQuery UI widget for color picking (similar to the one in Microsoft Office 2010).
Stars: ✭ 271 (+90.85%)
Mutual labels:  color, color-picker
Pixel Picker
A tiny menu bar application that helps you pick colours from your screen! 🔍✨
Stars: ✭ 318 (+123.94%)
Mutual labels:  color, color-picker
Iro.js
🎨 Modular color picker widget for JavaScript, with support for a bunch of color formats
Stars: ✭ 796 (+460.56%)
Mutual labels:  color, color-picker
javascript-color-gradient
Lightweight JavaScript library, used to generate an array of color gradients, between start and finish colors.
Stars: ✭ 54 (-61.97%)
Mutual labels:  color, color-picker
React Colorful
🎨 A tiny (2,5 KB) color picker component for React and Preact apps
Stars: ✭ 951 (+569.72%)
Mutual labels:  color, color-picker
Leonardo
Generate colors based on a desired contrast ratio
Stars: ✭ 973 (+585.21%)
Mutual labels:  color, color-picker
Colorpickerwpf
Simple color picker control for WPF
Stars: ✭ 71 (-50%)
Mutual labels:  color, color-picker
a-color-picker
A color picker for web app
Stars: ✭ 97 (-31.69%)
Mutual labels:  color, color-picker
color-picker
A color picker app made in flutter
Stars: ✭ 46 (-67.61%)
Mutual labels:  color, color-picker
Pickr
🎨 Flat, simple, multi-themed, responsive and hackable Color-Picker library. No dependencies, no jQuery. Compatible with all CSS Frameworks e.g. Bootstrap, Materialize. Supports alpha channel, rgba, hsla, hsva and more!
Stars: ✭ 3,759 (+2547.18%)
Mutual labels:  color, color-picker
przm
🎨 A simple, yet feature rich color picker and manipulator
Stars: ✭ 19 (-86.62%)
Mutual labels:  color, color-picker
Colorpicker
A mininal but complete colorpicker desktop app
Stars: ✭ 766 (+439.44%)
Mutual labels:  color, color-picker
Bootstrap Colorpicker
Bootstrap Colorpicker is a modular color picker plugin for Bootstrap.
Stars: ✭ 1,351 (+851.41%)
Mutual labels:  color, color-picker
global-color-picker
start the script and click anywhere to get rgb value at the cursor location
Stars: ✭ 31 (-78.17%)
Mutual labels:  color, color-picker
ColorPickView
🐾一个自定义的颜色选择view
Stars: ✭ 19 (-86.62%)
Mutual labels:  color, color-picker
Przm
🎨 A simple, yet feature rich color picker and manipulator
Stars: ✭ 17 (-88.03%)
Mutual labels:  color, color-picker

Pikolo

Build Status Download

An android color picker library

previewpreviewpreview

Download

repositories {
  jcenter() // or mavenCentral()
}

dependencies {
  implementation 'com.github.madrapps:pikolo:2.0.1'
}

Features

  • Includes HSLColorPicker and RGBColorPicker
  • Full customization of the various parts of the color picker (like arc length, arc position, indicator size, color, etc...) using XML attributes

Usage

Add the HSLColorPicker or RGBColorPicker view to your layout and use it in code as below:

final ColorPicker colorPicker = findViewById(R.id.colorPicker);
colorPicker.setColorSelectionListener(new SimpleColorSelectionListener() {
  @Override
  public void onColorSelected(int color) {
    // Do whatever you want with the color
    imageView.getBackground().setColorFilter(color, PorterDuff.Mode.MULTIPLY);
  }
});

License

Pikolo by Madrapps is licensed under a Apache License 2.0.

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].