README
Hex color set
Basic set of hex colors
Build Status">

Usage
const test = require("hex-color-set");
console.log(test.red());
// this outputs "#ff0000"
Documentation
Colors
- red
- orange
- yellow
- green
- blue
- purple
- pink
- brown
- black
- grey
- white
Dark colors
you can also get dark version of the colors by putting "dark" to it, for example:
const test = require("hex-color-set");
console.log(test.darkRed());