├── .gitignore ├── README.md ├── package.json ├── rollup.config.js ├── src ├── TabIcon │ ├── index.js │ └── tabIconHoc.js ├── constants │ ├── mapColors.js │ └── mapIcons.js ├── icons │ ├── atom.svg │ ├── bower.svg │ ├── bq.svg │ ├── clojure.svg │ ├── code.svg │ ├── coffee.svg │ ├── compile.svg │ ├── composer.svg │ ├── curl.svg │ ├── docker.svg │ ├── git.svg │ ├── go.svg │ ├── grunt.svg │ ├── gulp.svg │ ├── http.svg │ ├── index.js │ ├── java.svg │ ├── less.svg │ ├── micro.svg │ ├── monitor.svg │ ├── mysql.svg │ ├── nano.svg │ ├── nginx.svg │ ├── nodejs.svg │ ├── npm.svg │ ├── perl.svg │ ├── php.svg │ ├── psql.svg │ ├── python.svg │ ├── rails.svg │ ├── read.svg │ ├── ruby.svg │ ├── shell.svg │ ├── vim.svg │ ├── yarn.svg │ └── yo.svg └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /npm-debug.log 3 | /dist 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/TabIcon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/TabIcon/index.js -------------------------------------------------------------------------------- /src/TabIcon/tabIconHoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/TabIcon/tabIconHoc.js -------------------------------------------------------------------------------- /src/constants/mapColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/constants/mapColors.js -------------------------------------------------------------------------------- /src/constants/mapIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/constants/mapIcons.js -------------------------------------------------------------------------------- /src/icons/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/atom.svg -------------------------------------------------------------------------------- /src/icons/bower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/bower.svg -------------------------------------------------------------------------------- /src/icons/bq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/bq.svg -------------------------------------------------------------------------------- /src/icons/clojure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/clojure.svg -------------------------------------------------------------------------------- /src/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/code.svg -------------------------------------------------------------------------------- /src/icons/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/coffee.svg -------------------------------------------------------------------------------- /src/icons/compile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/compile.svg -------------------------------------------------------------------------------- /src/icons/composer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/composer.svg -------------------------------------------------------------------------------- /src/icons/curl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/curl.svg -------------------------------------------------------------------------------- /src/icons/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/docker.svg -------------------------------------------------------------------------------- /src/icons/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/git.svg -------------------------------------------------------------------------------- /src/icons/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/go.svg -------------------------------------------------------------------------------- /src/icons/grunt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/grunt.svg -------------------------------------------------------------------------------- /src/icons/gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/gulp.svg -------------------------------------------------------------------------------- /src/icons/http.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/http.svg -------------------------------------------------------------------------------- /src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/index.js -------------------------------------------------------------------------------- /src/icons/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/java.svg -------------------------------------------------------------------------------- /src/icons/less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/less.svg -------------------------------------------------------------------------------- /src/icons/micro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/micro.svg -------------------------------------------------------------------------------- /src/icons/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/monitor.svg -------------------------------------------------------------------------------- /src/icons/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/mysql.svg -------------------------------------------------------------------------------- /src/icons/nano.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/nano.svg -------------------------------------------------------------------------------- /src/icons/nginx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/nginx.svg -------------------------------------------------------------------------------- /src/icons/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/nodejs.svg -------------------------------------------------------------------------------- /src/icons/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/npm.svg -------------------------------------------------------------------------------- /src/icons/perl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/perl.svg -------------------------------------------------------------------------------- /src/icons/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/php.svg -------------------------------------------------------------------------------- /src/icons/psql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/psql.svg -------------------------------------------------------------------------------- /src/icons/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/python.svg -------------------------------------------------------------------------------- /src/icons/rails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/rails.svg -------------------------------------------------------------------------------- /src/icons/read.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/read.svg -------------------------------------------------------------------------------- /src/icons/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/ruby.svg -------------------------------------------------------------------------------- /src/icons/shell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/shell.svg -------------------------------------------------------------------------------- /src/icons/vim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/vim.svg -------------------------------------------------------------------------------- /src/icons/yarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/yarn.svg -------------------------------------------------------------------------------- /src/icons/yo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/icons/yo.svg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfrankland/hyper-tab-icons/HEAD/yarn.lock --------------------------------------------------------------------------------