├── .github ├── dependabot.yml └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets └── img.png ├── index.d.ts ├── index.js ├── package.json └── test └── generate.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gustu/string-to-color/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gustu/string-to-color/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gustu/string-to-color/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gustu/string-to-color/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gustu/string-to-color/HEAD/README.md -------------------------------------------------------------------------------- /assets/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gustu/string-to-color/HEAD/assets/img.png -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gustu/string-to-color/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gustu/string-to-color/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gustu/string-to-color/HEAD/package.json -------------------------------------------------------------------------------- /test/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gustu/string-to-color/HEAD/test/generate.js --------------------------------------------------------------------------------