├── .editorconfig ├── .npmignore ├── LICENSE ├── README.md ├── colortest └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablopunk/colortest/HEAD/.editorconfig -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | index.html 2 | .editorconfig 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablopunk/colortest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablopunk/colortest/HEAD/README.md -------------------------------------------------------------------------------- /colortest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablopunk/colortest/HEAD/colortest -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablopunk/colortest/HEAD/package.json --------------------------------------------------------------------------------