Skip to content

A collection of manually compiled color palettes, packaged as a Processing library.

Notifications You must be signed in to change notification settings

archive-for-processing/palettes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

color-palettes

A collection of manually compiled color palettes, packaged as a Processing library.

Installation

Clone this repository into the Processing libraries directory /Processing/libraries/.

Usage

import palettes.*;

Palettes p;

void setup() {
  size(1000, 1000);
}

void draw() {
  Palettes p = new Palettes(this);
  println(p.paletteNames);

  p.getPalette("flag");

  background(p.background);

  fill(p.colors[0]);
  stroke(p.stroke);
  rect(200, 200, 200, 200);
}

Overview

overview

Resources

Useful documentation and similar projects for implementing a custom Processing library.

About

A collection of manually compiled color palettes, packaged as a Processing library.

Resources

Stars

Watchers

Forks

Packages

No packages published