├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── contributing.md ├── copy-icon.svg ├── css └── backgroundgen.css ├── fav.png ├── img ├── Octocat.png └── logoo.png ├── index.html ├── js └── backgroundgen.js └── whereToStart.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/contributing.md -------------------------------------------------------------------------------- /copy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/copy-icon.svg -------------------------------------------------------------------------------- /css/backgroundgen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/css/backgroundgen.css -------------------------------------------------------------------------------- /fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/fav.png -------------------------------------------------------------------------------- /img/Octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/img/Octocat.png -------------------------------------------------------------------------------- /img/logoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/img/logoo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/index.html -------------------------------------------------------------------------------- /js/backgroundgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/js/backgroundgen.js -------------------------------------------------------------------------------- /whereToStart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirbhayparmar/gradientiser-BgGenerator/HEAD/whereToStart.txt --------------------------------------------------------------------------------