hex-color-set

basic set of hex colors

Usage no npm install needed!

<script type="module">
  import hexColorSet from 'https://cdn.skypack.dev/hex-color-set';
</script>

README

Hex color set

Basic set of hex colors

Build Status"> install size

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());