All Projects → Gustu → String To Color

Gustu / String To Color

Licence: mit
Time invariant color from any object.

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to String To Color

Xa
Beautiful & Customizable logger ❤️
Stars: ✭ 78 (-22.77%)
Mutual labels:  npm, color
Sass A11ycolor
🌈 Generate the nearest accessible color with Sass.
Stars: ✭ 24 (-76.24%)
Mutual labels:  npm, color
Nord Atom Ui
An arctic, north-bluish clean and elegant minimal Atom UI theme.
Stars: ✭ 94 (-6.93%)
Mutual labels:  color
Cryptocurrency Cli
💰 Cryptocurrency Portfolio On The Command Line 💰
Stars: ✭ 99 (-1.98%)
Mutual labels:  npm
Lmify
Install NPM dependencies programmatically 🤙
Stars: ✭ 98 (-2.97%)
Mutual labels:  npm
Npm Introspect
🔎 Introspect is a tool to traverse the NPM ecosystem and identify quality modules. Use the CLI to upload and examine your project's dependencies.
Stars: ✭ 95 (-5.94%)
Mutual labels:  npm
Prominentcolor
golang package to find the K most dominant/prominent colors in an image
Stars: ✭ 98 (-2.97%)
Mutual labels:  color
Npm Pipeline Rails
Use npm as part of your Rails asset pipeline
Stars: ✭ 93 (-7.92%)
Mutual labels:  npm
Node Sonic Channel
🦉 Sonic Channel integration for Node. Used in pair with Sonic, the fast, lightweight and schema-less search backend.
Stars: ✭ 101 (+0%)
Mutual labels:  npm
Bootstrap Colorpicker
Bootstrap Colorpicker is a modular color picker plugin for Bootstrap.
Stars: ✭ 1,351 (+1237.62%)
Mutual labels:  color
Config Chain
Handle configuration once and for all
Stars: ✭ 98 (-2.97%)
Mutual labels:  npm
Values.js
🍇 Get the tints and shades of a color
Stars: ✭ 97 (-3.96%)
Mutual labels:  color
Colorgrad
Go (Golang) color scales library for maps, charts, data-visualization & creative coding.
Stars: ✭ 96 (-4.95%)
Mutual labels:  color
Geotic
Entity Component System library for javascript
Stars: ✭ 97 (-3.96%)
Mutual labels:  npm
Vue Csv Import
Vue.js component to select a CSV file, map the columns to fields, and post it somewhere.
Stars: ✭ 95 (-5.94%)
Mutual labels:  npm
Kaloader
Beautiful animated placeholders for showing loading of data
Stars: ✭ 99 (-1.98%)
Mutual labels:  color
Cyanea
A theme engine for Android
Stars: ✭ 1,319 (+1205.94%)
Mutual labels:  color
Nord Hyper
An arctic, north-bluish clean and elegant Hyper theme plugin.
Stars: ✭ 96 (-4.95%)
Mutual labels:  color
Democracy Client
DEMOCRACY App Client
Stars: ✭ 98 (-2.97%)
Mutual labels:  npm
Drawablecolorchange
Android Library to dynamically change color of drawable.
Stars: ✭ 101 (+0%)
Mutual labels:  color

String to color

Alt text

npm version

Generate time invariant color from any string or any object.

Install

npm install string-to-color
yarn add string-to-color

Demo

https://gustu.github.io/string-to-color/

Usage

const stc = require('string-to-color');
const color = stc('string'); // => "#7f1de4"

or just generate color from any object, even null!

const color = stc(null); // => "#1ad64b"

Another feature is that when your string contains color name, output will more or less equal to that color

const color = stc("i am a red fox"); // => "#f03d22"

When multiple colors are provided, they will be mixed with each other

const color = stc("red green blue"); // => "#7f5b78"

License

MIT.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].