p5.palette
v0.3.0
Published
A p5.js library to manage color palettes
Downloads
7
Readme
p5.palette
A JavaScript library for creating and managing color palettes in p5.js.
This project is still in alpha version, there might be some bugs and inconsistencies all around. I develop it in my spare time and I'm trying to improve it gradually, there are some plans for the near future:
- introduce basic unit tests;
- convert the code base to TypeScript;
- make it more modular and possibly generate customized bundles;
- develop a friendly UI tool to help manage stored palettes.
All help is welcome and anyone can contribute with code, ideas and suggestions.
Introduction
This library helps fast prototyping creative visual applications by providing functions to generate and manage color palettes.
It is strongly inspired by colorLib library for Processing.
p5.js missed something similar, so while converting some sketches from Processing (Java) to p5.js (JavaScript), I could neatly extract and migrate features from some hacks I had done in colorLib for personal usage, all joined in p5.palette.
The library allows you to create and manipulate color palettes in a very dynamic way, helping develop creative coding applications with color harmony and aesthetic appeal in a very fast pace.
Installation
Please download the latest p5.palette.min.js
release from the dist directory.
<script type="text/javascript" src="path-to/p5.min.js"></script>
<script type="text/javascript" src="path-to/p5.palette.min.js"></script>
Palette class
The library provides a Palette
class that represents a finite collection of colors.
Internally, each color has an index number, starting from zero:
It is possible to use colors through their index with the get()
function:
const col = palette.get(2);
fill(col);
One important aspect of the Palette class is that there is a cursor that points to one color, with will be the "selected" one. The cursor always starts at the first color (index zero):
The Palette class has some methods to get the current selected color.
One of the most commonly used is the next()
function:
const col1 = palette.next();
fill(col1);
It will return the current selected color and move the cursor to the next one.
Calling next()
once again will return the color at index 1 and step the cursor to index 2.
const col2 = palette.next();
stroke(col2);
When next()
is invoked more times and the cursor gets to the index of the last color, it will be set back to zero when next()
is called again.
There's a previous()
method as well, with similar behavior, providing the current selected color and moving down the cursor to the color at previous index value.
When the cursor is at the first color, calling previous()
will move it up to the last color (the one with the highest index).
If you want to get the current selected color without affecting the cursor position, simply call get()
without arguments:
const bkgColor = palette.get();
background(bkgColor);
Using get()
will return always the single selected color at the time.
Create palette
The most basic way to create a Palette is:
let palette;
function setup() {
createCanvas(500, 500);
palette = createPalette();
}
function draw() {
...use palette here
}
The palette object created is empty, it has no colors at the moment. It is possible to add some colors to the palette:
let palette;
function setup() {
createCanvas(500, 500);
palette = createPalette();
palette
.add(color("#c0392b"))
.add(color(255, 204, 0))
.add(color("magenta"))
.add(color("#0f0"))
.add(color("rgb(0,0,255)"))
.add(color("hsl(160, 100%, 50%)"))
.add(color("hsb(160, 100%, 50%)"));
}
function draw() {
...use palette here
}
The add()
function takes a p5.js Color object and stores it into an internal array structure.
Each color added will have a numeric index, starting from zero.
Every Palette will have one of the colors selected at a time, and only one color can be selected. That color will be returned by the functions that deliver colors to be used by the application.
It is possible to easily visualize the colors in the palette using the draw()
function:
let palette;
function setup() {
pixelDensity(1);
createCanvas(400, 200);
palette = createPalette();
palette
.add(color("#c0392b"))
.add(color(255, 204, 0))
.add(color("magenta"))
.add(color("#0f0"))
.add(color("rgb(0,0,255)"))
.add(color("hsl(160, 100%, 50%)"))
.add(color("hsb(160, 100%, 50%)"));
}
function draw() {
background(255);
palette.draw();
noLoop();
}
It will plot a rectangle for each color:
That is useful for inpecting the palette, but you might not want plotted in your sketch.
Yet another way to visualize the palette is through the log()
function:
let palette;
function setup() {
pixelDensity(1);
createCanvas(400, 200);
palette = createPalette();
palette
.add(color("#c0392b"))
.add(color(255, 204, 0))
.add(color("magenta"))
.add(color("#0f0"))
.add(color("rgb(0,0,255)"))
.add(color("hsl(160, 100%, 50%)"))
.add(color("hsb(160, 100%, 50%)"));
palette.log(); // Log colors to console
}
The colors will be output on the browser console:
Loading palettes
Besides creating your own color palette manually, it is possible to load existing palettes from third party sources.
One way is to pass a string containg color hexadecimals to the constructor:
let palette = createPalette('264653-2a9d8f-e9c46a-f4a261-e76f51');
palette.draw();
That is very useful for loading palettes chosen in sites like Coolors and poolors, where you can copy the hexadecimals string from the palette URL.
There are two other ways to load palettes from the API's of some specialized color sites, such as COLOURlovers and Colormind.
Examples
npm install -g live-server
cd examples/public
live-server
Contributing
You can fork the project and submit your pull-request.
This project uses the task manager Grunt.
On the terminal, in the project folder directory:
- Install
grunt-cli
:npm install -g grunt-cli
- Install packages:
npm install
Build
Run grunt
on the terminal to compile the library, it will also export to examples folder.
Developing
Run grunt watch
to update changes in real time.
API Documentation
Run grunt jsdoc
to generate API documentation on folder doc/jsdoc
.