├── .github └── workflows │ └── purge-cache.yml ├── .prettierrc.json ├── .vscode └── settings.json ├── README.md ├── app.css ├── color.ini ├── custom_bg.png ├── hazy.js ├── hazy_home.png ├── hazy_lyrics.png ├── hazy_play.png ├── install.ps1 ├── install.sh ├── manifest.json ├── theme.js └── user.css /.github/workflows/purge-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/.github/workflows/purge-cache.yml -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": false 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/README.md -------------------------------------------------------------------------------- /app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/app.css -------------------------------------------------------------------------------- /color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/color.ini -------------------------------------------------------------------------------- /custom_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/custom_bg.png -------------------------------------------------------------------------------- /hazy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/hazy.js -------------------------------------------------------------------------------- /hazy_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/hazy_home.png -------------------------------------------------------------------------------- /hazy_lyrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/hazy_lyrics.png -------------------------------------------------------------------------------- /hazy_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/hazy_play.png -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/install.ps1 -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/install.sh -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/manifest.json -------------------------------------------------------------------------------- /theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Astromations/Hazy/HEAD/theme.js -------------------------------------------------------------------------------- /user.css: -------------------------------------------------------------------------------- 1 | @import url("https://cdn.jsdelivr.net/gh/astromations/Hazy/app.css"); 2 | --------------------------------------------------------------------------------