├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE-CC-BY-SA-4.0 ├── LICENSE-HCIRN ├── LICENSE-MIT ├── README.md ├── gulpfile.js ├── lib ├── blind.js ├── color-blind.js └── generate-examples.js ├── package.json └── test └── color-blind_test.js /.gitignore: -------------------------------------------------------------------------------- 1 | _ignore 2 | node_modules 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE-CC-BY-SA-4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/LICENSE-CC-BY-SA-4.0 -------------------------------------------------------------------------------- /LICENSE-HCIRN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/LICENSE-HCIRN -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/blind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/lib/blind.js -------------------------------------------------------------------------------- /lib/color-blind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/lib/color-blind.js -------------------------------------------------------------------------------- /lib/generate-examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/lib/generate-examples.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/package.json -------------------------------------------------------------------------------- /test/color-blind_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skratchdot/color-blind/HEAD/test/color-blind_test.js --------------------------------------------------------------------------------