All Projects → dabanlee → Colority

dabanlee / Colority

Licence: mit
🎨 (~1kb) library to extract colors from pictures.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Colority

Color.js
Extract colors from an image (0.75 KB) 🎨
Stars: ✭ 42 (-43.24%)
Mutual labels:  extract, rgb, colors
Gradstop
JavaScript micro library to generate gradient color stops 🏳️‍🌈
Stars: ✭ 144 (+94.59%)
Mutual labels:  rgb, colors
Colore
A powerful C# library for Razer Chroma's SDK
Stars: ✭ 121 (+63.51%)
Mutual labels:  rgb, colors
leeks.js
Simple ANSI styling for your terminal
Stars: ✭ 12 (-83.78%)
Mutual labels:  colors, rgb
Values.js
🍇 Get the tints and shades of a color
Stars: ✭ 97 (+31.08%)
Mutual labels:  rgb, colors
colors-convert
🦚 A simple colors library
Stars: ✭ 15 (-79.73%)
Mutual labels:  colors, rgb
Tints And Shades
🌈 Display tints and shades of a given hex color in 10% increments.
Stars: ✭ 228 (+208.11%)
Mutual labels:  rgb, colors
go-rainbow
Golang Helper for beautiful CLI Applications
Stars: ✭ 86 (+16.22%)
Mutual labels:  colors, rgb
random color
⚙️🎨 Rust crate for generating random attractive colors
Stars: ✭ 30 (-59.46%)
Mutual labels:  colors, rgb
global-color-picker
start the script and click anywhere to get rgb value at the cursor location
Stars: ✭ 31 (-58.11%)
Mutual labels:  colors, rgb
React Color Extractor
A React component which extracts colors from an image
Stars: ✭ 314 (+324.32%)
Mutual labels:  rgb, colors
ColorPicker
Customizable Color Picker control for WPF
Stars: ✭ 57 (-22.97%)
Mutual labels:  colors, rgb
Sorted Colors
A tool to sort the named CSS colors in a way that it shows related colors together
Stars: ✭ 167 (+125.68%)
Mutual labels:  rgb, colors
Colorette
Easily set the color and style of text in the terminal.
Stars: ✭ 1,047 (+1314.86%)
Mutual labels:  colors
Ink Text Animation
A text animation component for Ink
Stars: ✭ 58 (-21.62%)
Mutual labels:  colors
Bentools Etl
PHP ETL (Extract / Transform / Load) library with SOLID principles + almost no dependency.
Stars: ✭ 45 (-39.19%)
Mutual labels:  extract
React Marker
🖍️ Highlight keywords and add colors to your text.
Stars: ✭ 45 (-39.19%)
Mutual labels:  colors
Wraith Master
A native Linux RGB control application for the AMD Wraith Prism (GitLab Mirror)
Stars: ✭ 66 (-10.81%)
Mutual labels:  rgb
React Handy Renderer
✏️ Draw 2D primitives in sketchy style with React
Stars: ✭ 56 (-24.32%)
Mutual labels:  colors
Devtools Timeline Images
Extract images from Chrome DevTools report.
Stars: ✭ 44 (-40.54%)
Mutual labels:  extract

🎨

colority

travis dependencies devDependencies

extracting colors from pictures.

Installation

$ yarn add colority

Usage

DEMO

import colority from 'colority';

colority(imageURL, colors => {
    // do something here...
});

// or skip pixels

colority(imageURL, {
    skip: 1000,
}, colors => {
    // do something here...
});

APIs

  • colority(imageURL[, options], colors => {})
    • imageURL: picture url.
    • options.skip: skip pixels(Optional, default to 10).
    • colors: the extracted rgb colors(Sort by quantity).

License

Licensed under the MIT License

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