├── .gitignore ├── README.md ├── component.json ├── css └── app.css ├── demo.js ├── img ├── dark_checkered_bg.png ├── drag_placeholder.png ├── photo1.jpg ├── photo2.jpg └── photo3.jpg ├── index.html ├── js ├── color-thief.js └── libs │ ├── jquery-2.0.2.min.js │ ├── jquery.lettering.js │ ├── modernizr.custom.js │ └── mustache.js ├── node-demo.js ├── package.json ├── sass └── app.sass └── test └── color-thief-test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/README.md -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/component.json -------------------------------------------------------------------------------- /css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/css/app.css -------------------------------------------------------------------------------- /demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/demo.js -------------------------------------------------------------------------------- /img/dark_checkered_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/img/dark_checkered_bg.png -------------------------------------------------------------------------------- /img/drag_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/img/drag_placeholder.png -------------------------------------------------------------------------------- /img/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/img/photo1.jpg -------------------------------------------------------------------------------- /img/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/img/photo2.jpg -------------------------------------------------------------------------------- /img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/img/photo3.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/index.html -------------------------------------------------------------------------------- /js/color-thief.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/js/color-thief.js -------------------------------------------------------------------------------- /js/libs/jquery-2.0.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/js/libs/jquery-2.0.2.min.js -------------------------------------------------------------------------------- /js/libs/jquery.lettering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/js/libs/jquery.lettering.js -------------------------------------------------------------------------------- /js/libs/modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/js/libs/modernizr.custom.js -------------------------------------------------------------------------------- /js/libs/mustache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/js/libs/mustache.js -------------------------------------------------------------------------------- /node-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/node-demo.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/package.json -------------------------------------------------------------------------------- /sass/app.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/sass/app.sass -------------------------------------------------------------------------------- /test/color-thief-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null2/color-thief/HEAD/test/color-thief-test.js --------------------------------------------------------------------------------