├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.md └── workflows │ └── jekyll-gh-pages.yml ├── .hintrc ├── LICENSE ├── README-Marketplace.md ├── README.md ├── Spicetify-ShadeX.code-workspace ├── assets ├── icons │ ├── airplay.svg │ ├── circle-pause.svg │ ├── circle-play.svg │ ├── heart-off.svg │ ├── heart.svg │ ├── list.svg │ ├── maximize-2.svg │ ├── pause.svg │ ├── play.svg │ ├── repeat-1.svg │ ├── repeat.svg │ ├── shopping-cart.svg │ ├── shuffle.svg │ ├── skip-back.svg │ └── skip-forward.svg └── images │ └── base.png ├── dev ├── apply.ps1 └── del_workflows.ps1 ├── install ├── Functions.psm1 ├── Lucid.ps1 └── install.sh ├── manifest.json ├── remote ├── color.ini ├── theme.js └── user.css └── src ├── color.ini ├── theme.js └── user.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.hintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/.hintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/LICENSE -------------------------------------------------------------------------------- /README-Marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/README-Marketplace.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/README.md -------------------------------------------------------------------------------- /Spicetify-ShadeX.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/Spicetify-ShadeX.code-workspace -------------------------------------------------------------------------------- /assets/icons/airplay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/airplay.svg -------------------------------------------------------------------------------- /assets/icons/circle-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/circle-pause.svg -------------------------------------------------------------------------------- /assets/icons/circle-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/circle-play.svg -------------------------------------------------------------------------------- /assets/icons/heart-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/heart-off.svg -------------------------------------------------------------------------------- /assets/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/heart.svg -------------------------------------------------------------------------------- /assets/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/list.svg -------------------------------------------------------------------------------- /assets/icons/maximize-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/maximize-2.svg -------------------------------------------------------------------------------- /assets/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/pause.svg -------------------------------------------------------------------------------- /assets/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/play.svg -------------------------------------------------------------------------------- /assets/icons/repeat-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/repeat-1.svg -------------------------------------------------------------------------------- /assets/icons/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/repeat.svg -------------------------------------------------------------------------------- /assets/icons/shopping-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/shopping-cart.svg -------------------------------------------------------------------------------- /assets/icons/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/shuffle.svg -------------------------------------------------------------------------------- /assets/icons/skip-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/skip-back.svg -------------------------------------------------------------------------------- /assets/icons/skip-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/icons/skip-forward.svg -------------------------------------------------------------------------------- /assets/images/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/assets/images/base.png -------------------------------------------------------------------------------- /dev/apply.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/dev/apply.ps1 -------------------------------------------------------------------------------- /dev/del_workflows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/dev/del_workflows.ps1 -------------------------------------------------------------------------------- /install/Functions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/install/Functions.psm1 -------------------------------------------------------------------------------- /install/Lucid.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/install/Lucid.ps1 -------------------------------------------------------------------------------- /install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/install/install.sh -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/manifest.json -------------------------------------------------------------------------------- /remote/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/remote/color.ini -------------------------------------------------------------------------------- /remote/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/remote/theme.js -------------------------------------------------------------------------------- /remote/user.css: -------------------------------------------------------------------------------- 1 | @import url("https://sanooj.is-a.dev/Spicetify-ShadeX/src/user.css"); -------------------------------------------------------------------------------- /src/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/src/color.ini -------------------------------------------------------------------------------- /src/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/src/theme.js -------------------------------------------------------------------------------- /src/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sanoojes/Spicetify-ShadeX/HEAD/src/user.css --------------------------------------------------------------------------------