├── .eslintrc ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── components ├── AddColor.js ├── AngleRange.js ├── AnimatedBackground.js ├── Colors.js ├── Controls.js ├── Output.js ├── Random.js └── SpeedRange.js ├── context └── SettingsContext.js ├── next.config.js ├── package.json ├── pages ├── _app.js ├── api │ └── hello.js └── index.js ├── public ├── favicon.ico └── vercel.svg └── styles ├── .prettierignore ├── .prettierrc └── globals.css /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/README.md -------------------------------------------------------------------------------- /components/AddColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/components/AddColor.js -------------------------------------------------------------------------------- /components/AngleRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/components/AngleRange.js -------------------------------------------------------------------------------- /components/AnimatedBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/components/AnimatedBackground.js -------------------------------------------------------------------------------- /components/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/components/Colors.js -------------------------------------------------------------------------------- /components/Controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/components/Controls.js -------------------------------------------------------------------------------- /components/Output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/components/Output.js -------------------------------------------------------------------------------- /components/Random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/components/Random.js -------------------------------------------------------------------------------- /components/SpeedRange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/components/SpeedRange.js -------------------------------------------------------------------------------- /context/SettingsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/context/SettingsContext.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/pages/api/hello.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/pages/index.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/styles/.prettierignore -------------------------------------------------------------------------------- /styles/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/styles/.prettierrc -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/animated-gradient-background-generator/HEAD/styles/globals.css --------------------------------------------------------------------------------