colorspace

Generate HEX colors for a given namespace.

MIT 7 个版本
安装
npm install colorspace
yarn add colorspace
pnpm add colorspace
bun add colorspace
README

colorspace

Colorspace is a simple module which generates HEX color codes for namespaces. The base color is decided by the first part of the namespace. All other parts of the namespace alters the color tone. This way you can visually see which namespaces belong together and which does not.

Installation

The module is released in the public npm registry and can be installed by running:

npm install --save colorspace

Usage

We assume that you've already required the module using the following code:

'use strict';

var colorspace = require('colorspace');

The returned function accepts 2 arguments:

  1. namespace string, The namespace that needs to have a HEX color generated.
  2. delimiter, string, optional, Delimiter to find the different sections of the namespace. Defaults to :

Example

console.log(colorspace('color')) // #6b4b3a
console.log(colorspace('color:space')) // #796B67

License

MIT

版本列表
1.1.4 2021-10-20
1.1.3 2021-10-20
1.1.2 2019-04-26
1.1.1 2018-07-17
1.1.0 2018-07-17
1.0.1 2015-05-29
1.0.0 2015-05-28