├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── index.esm.js ├── index.html ├── index.iife.js └── index.js ├── jest.config.js ├── package.json ├── src ├── en.js ├── index.js └── utils.js └── tests ├── colorDescriptionLib.test.js └── test.js /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/dist/index.esm.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/index.iife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/dist/index.iife.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/dist/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/package.json -------------------------------------------------------------------------------- /src/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/src/en.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/src/utils.js -------------------------------------------------------------------------------- /tests/colorDescriptionLib.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/tests/colorDescriptionLib.test.js -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/words/color-description/HEAD/tests/test.js --------------------------------------------------------------------------------