• Stars
    star
    344
  • Rank 123,066 (Top 3 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 6 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A collection of color palettes saved for personal use.

Chromotome

A collection of color palettes used in order to easily colorize new creative coding projects. New palettes will be continuously added, and all existing ones are subject to change.

Installation:

npm install -save chromotome

Basic usage:

// Can both use ES6 import and CommonJS require.
import * as tome from 'chromotome';

// Palettes can be acquired randomly...
let palette = tome.get(); // tome.getRandom() also works.

// ...or by name!
palette = tome.get('miradors'); // tome.getNames() gets you a list of all the different palette names.

// A palette consists of an array of colors together with (usually) a stroke color and a background color.
console.log(palette.colors); // --> ['#ff6936', '#fddc3f', '#0075ca', '#00bb70']
console.log(palette.stroke); // --> '#ffffff'
console.log(palette.background); // --> '#020202'

Palette overview:

https://kgolid.github.io/chromotome-site/

More Repositories

1

p5ycho

Generative art with P5
JavaScript
584
star
2

ballots

Generates ballot-like visual structures using the Apparatus Generator repetetively.
JavaScript
77
star
3

topographic

An implementation of the Marching Squares algorithm.
JavaScript
69
star
4

sonant

Experimentations with tone.js and basic music theory.
JavaScript
66
star
5

noisify

Generate noise field using given image as its gradient map.
JavaScript
62
star
6

apparatus-assembly

Animated usage of apparatus-generator.
JavaScript
49
star
7

byrne-generator

Randomly generates Oliver Byrne-style geometrical "proofs" (proving nothing)
JavaScript
48
star
8

apparatus-client

Showcasing the Apparatus-generator library.
JavaScript
46
star
9

hatch-automata

Isometric cellular automata
JavaScript
43
star
10

pixel-sorting

Rearranges pixels in an image. For each pixel P, from top to bottom, left to right, take N random pixels not yet processed, pick the one that is most similar with Pā€™s surroundings and swap the positions of the two.
JavaScript
40
star
11

aquarelle

Particles reacting to a noise field, generating a watercolor-esque pattern.
JavaScript
38
star
12

crosshatch-automata

JavaScript
23
star
13

apparatus-generator

Generates random "apparatus shapes" based on several parametres.
JavaScript
23
star
14

generated-space

Vue
17
star
15

cellular-automata-post

JavaScript
17
star
16

ornament

JavaScript
15
star
17

hatched-discs

JavaScript
13
star
18

tilework

JavaScript
13
star
19

hedgehog

JavaScript
10
star
20

isometric-automata

JavaScript
6
star
21

grainshade

JavaScript
6
star
22

ribbon-lattice

JavaScript
4
star
23

slant

TypeScript
4
star
24

lukebilder

3
star
25

regression

JavaScript
3
star
26

Refutation-Resolver

JavaScript
3
star
27

tonespace

A grid of grouped colours taken from Chromotome.
JavaScript
1
star
28

Tic-Tac-Toe

Tic Tac Toe with Hints
JavaScript
1
star
29

golid_web

JavaScript
1
star
30

cellular-automata-generator

JavaScript
1
star
31

facemaker

Python
1
star
32

D3licious

Me learning D3.
JavaScript
1
star
33

ms-apparatus

JavaScript
1
star