├── .gitignore ├── LICENSE ├── README.md ├── assets └── example.gif ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | **.swp 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renebrandel/adaptive-gradient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renebrandel/adaptive-gradient/HEAD/README.md -------------------------------------------------------------------------------- /assets/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renebrandel/adaptive-gradient/HEAD/assets/example.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renebrandel/adaptive-gradient/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renebrandel/adaptive-gradient/HEAD/package.json --------------------------------------------------------------------------------