pafiume-colors
v0.2.0
Published
color scheme generator
Readme
Pafiume Colors
Random color scheme generator
Install
Using npm:
$ npm install pafiume-colorsUsing yarn:
$ yarn add pafiume-colorsUsing bower:
$ bower install pafiume-colorsLoad
From npm:
const pafiumeColors = require('pafiume-colors');From Bower:
<script src="/bower_components/pafiume-colors/colors.js"></script>The pafiumeColors Object loads into global scope from the above script.
Usage
pafiumeColors
The pafiumeColors Object contains multiple API to grab random colors:
random()
color.random() // => {...};get(name)
Produces a specific color.
color.get('infinity'); // => {...};scheme(quantity)
Produces an array of unique colors. Can produce quantity anywhere from 0 - total available colors.
- Unspecified quantity results in array of 1 color
- Negative number quantity results in array of 1 color
- Quantity greater than available colors results in array of all colors
color.scheme(3); // => [ {...}, {...}, {...} ];
color.scheme(); // => [ {...} ];
color.scheme(-3); // => [ {...} ];
color.scheme(100); // => [ {...} ... ];getAll()
Produces an array of all colors.
color.getAll(); // => [ {...} ... ];Color Object
Each color Object produced by pafiumeColors has two properties
name- String representing name of color sethues- Array containing hex color Strings, ordered light to dark
{
name: 'infinity',
hues: [
'#ACABB3',
'#8E8C97',
'#5F6062',
'#24232A',
],
}Colors

