├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── doc └── images │ ├── Screenshot_example_1.png │ └── example.gif ├── lib ├── components │ └── code-color-collection.jsx ├── index.js └── utils.js ├── package.json └── styles └── color-collection.less /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxolib/inkdrop-color-collection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxolib/inkdrop-color-collection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxolib/inkdrop-color-collection/HEAD/README.md -------------------------------------------------------------------------------- /doc/images/Screenshot_example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxolib/inkdrop-color-collection/HEAD/doc/images/Screenshot_example_1.png -------------------------------------------------------------------------------- /doc/images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxolib/inkdrop-color-collection/HEAD/doc/images/example.gif -------------------------------------------------------------------------------- /lib/components/code-color-collection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxolib/inkdrop-color-collection/HEAD/lib/components/code-color-collection.jsx -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxolib/inkdrop-color-collection/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxolib/inkdrop-color-collection/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxolib/inkdrop-color-collection/HEAD/package.json -------------------------------------------------------------------------------- /styles/color-collection.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxolib/inkdrop-color-collection/HEAD/styles/color-collection.less --------------------------------------------------------------------------------