├── .gitignore ├── LICENSE ├── README.md ├── add_gradients.md ├── gradients-parsed.json ├── gradients.json └── webgradients.css /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | index.js 3 | package.json 4 | node_modules 5 | yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itmeo/webgradients/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itmeo/webgradients/HEAD/README.md -------------------------------------------------------------------------------- /add_gradients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itmeo/webgradients/HEAD/add_gradients.md -------------------------------------------------------------------------------- /gradients-parsed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itmeo/webgradients/HEAD/gradients-parsed.json -------------------------------------------------------------------------------- /gradients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itmeo/webgradients/HEAD/gradients.json -------------------------------------------------------------------------------- /webgradients.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itmeo/webgradients/HEAD/webgradients.css --------------------------------------------------------------------------------