https://github.com/Gustu/string-to-color
Time invariant color from any object.
https://github.com/Gustu/string-to-color
color javascript npm
Last synced: 17 days ago
JSON representation
Time invariant color from any object.
- Host: GitHub
- URL: https://github.com/Gustu/string-to-color
- Owner: Gustu
- License: mit
- Created: 2016-03-25T13:40:53.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-23T17:00:52.000Z (over 2 years ago)
- Last Synced: 2025-03-10T19:54:09.252Z (about 2 months ago)
- Topics: color, javascript, npm
- Language: JavaScript
- Homepage:
- Size: 301 KB
- Stars: 186
- Watchers: 3
- Forks: 13
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# String to color

[](https://badge.fury.io/js/string-to-color) 
Generate time invariant color from any string or any object.
## Install
```bash
npm install string-to-color
```
```bash
yarn add string-to-color
```## Demo
https://gustu.github.io/string-to-color/
## Usage
```js
const stc = require('string-to-color');
const color = stc('string'); // => "#7f1de4"
```or just generate color from any object, even null!
```js
const color = stc(null); // => "#1ad64b"
```Another feature is that when your string contains color name, output will more or less equal to that color
```js
const color = stc("i am a red fox"); // => "#f03d22"
```When multiple colors are provided, they will be mixed with each other
```js
const color = stc("red green blue"); // => "#7f5b78"
```## License
MIT.