├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── Blackout ├── README.md ├── color.ini ├── images │ ├── album_page.png │ ├── artist_page.png │ ├── home.png │ └── lyrics_page.png └── user.css ├── Blossom ├── LICENSE ├── README.md ├── color.ini ├── images │ ├── album.png │ └── home.png └── user.css ├── BurntSienna ├── README.md ├── color.ini ├── screenshot.png └── user.css ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Default ├── README.md ├── color.ini └── ocean.png ├── Dreary ├── README.md ├── bib.png ├── color.ini ├── deeper.png ├── golden.png ├── graytone-blue.png ├── mono.png ├── psycho.png └── user.css ├── Dribbblish ├── README.md ├── assets │ └── glue-resources │ │ └── fonts │ │ ├── GoogleSansDisplayMedium.woff2 │ │ ├── GoogleSansDisplayRegular.woff2 │ │ ├── Roboto.woff2 │ │ └── RobotoMedium.woff2 ├── base.png ├── beach-sunset.png ├── catppuccin-frappe.png ├── catppuccin-latte.png ├── catppuccin-macchiato.png ├── catppuccin-mocha.png ├── color.ini ├── dark.png ├── gruvbox-material-dark.png ├── gruvbox.png ├── images │ └── tracklist-row-song-fallback.svg ├── install.ps1 ├── lunar.png ├── nord-dark.png ├── nord-light.png ├── purple.png ├── rosepine.png ├── samurai.png ├── theme.js ├── uninstall.ps1 ├── user.css ├── white.png └── windows-shortcut-instruction.png ├── Flow ├── LICENSE ├── README.md ├── color.ini ├── screenshots │ ├── ocean.png │ ├── pink.png │ ├── silver.png │ └── violet.png └── user.css ├── LICENSE ├── Matte ├── README.md ├── color.ini ├── screenshots │ ├── winctrl.png │ ├── ylx-gray-dark1.png │ ├── ylx-gray-dark2.png │ ├── ylx-gray-dark3.png │ ├── ylx-gray-light.png │ ├── ylx-gray.png │ ├── ylx-matte.png │ ├── ylx-periwinkle-dark.png │ ├── ylx-periwinkle.png │ └── ylx-porcelain.png └── user.css ├── Nightlight ├── README.md ├── color.ini ├── screenshots │ └── nightlight.png └── user.css ├── Onepunch ├── .gitignore ├── LICENSE ├── README.md ├── color.ini ├── screenshots │ ├── dark_album.png │ ├── dark_home.png │ ├── dark_playlist.png │ ├── dark_podcast.png │ ├── dark_profile.png │ ├── dark_ylx.png │ ├── display.gif │ ├── icons.png │ ├── legacy_ylx.png │ ├── light_album.png │ ├── light_home.png │ ├── light_playlist.png │ ├── light_podcast.png │ ├── light_profile.png │ └── light_ylx.png └── user.css ├── README.md ├── SharkBlue ├── README.md ├── color.ini ├── screenshot.png └── user.css ├── Sleek ├── README.md ├── ayudark.png ├── bladerunner.png ├── catppuccin.png ├── cherry.png ├── color.ini ├── coral.png ├── deep.png ├── deeper.png ├── dracula.png ├── eldritch.png ├── elementary.png ├── futura.png ├── greener.png ├── nord.png ├── psycho.png ├── rosepine.png ├── ultrablack.png ├── user.css ├── vantablack.png └── wealthy.png ├── StarryNight ├── README.md ├── color.ini ├── images │ ├── base.png │ ├── cotton-candy.png │ ├── forest.png │ ├── galaxy.png │ ├── orange.png │ ├── sky.png │ └── sunrise.png ├── theme.js └── user.css ├── THEMES.md ├── Turntable ├── LICENSE ├── README.md ├── color.ini ├── screenshots │ ├── blur_fad.png │ ├── blur_fad_vertical.png │ ├── fad.png │ ├── fad_vertical.png │ └── turntable.png ├── theme.js └── user.css ├── Ziro ├── LICENSE ├── README.md ├── color.ini ├── screenshots │ ├── rose-pine-dawn.jpg │ ├── rose-pine-moon.jpg │ └── rose-pine.jpg └── user.css ├── _Extra ├── README.md └── SpotifyNoControl │ ├── README.md │ ├── SpotifyNoControl.exe │ └── windows-shortcut-instruction.png ├── manifest.json └── text ├── README.md ├── color.ini ├── screenshots ├── CatppuccinLatte.png ├── CatppuccinMacchiato.png ├── CatppuccinMocha.png ├── Dracula.png ├── EverforestDarkMedium.png ├── ForestGreen.png ├── Gruvbox.png ├── Kanagawa.png ├── Nord.png ├── Rigel.png ├── RosePine.png ├── RosePineDawn.png ├── RosePineMoon.png ├── Solarized.png ├── Spicetify.png ├── Spotify.png ├── TokyoNight.png ├── TokyoNightStorm.png ├── winctrl.png ├── withimg.png └── withoutimg.png └── user.css /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode -------------------------------------------------------------------------------- /Blackout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blackout/README.md -------------------------------------------------------------------------------- /Blackout/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blackout/color.ini -------------------------------------------------------------------------------- /Blackout/images/album_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blackout/images/album_page.png -------------------------------------------------------------------------------- /Blackout/images/artist_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blackout/images/artist_page.png -------------------------------------------------------------------------------- /Blackout/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blackout/images/home.png -------------------------------------------------------------------------------- /Blackout/images/lyrics_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blackout/images/lyrics_page.png -------------------------------------------------------------------------------- /Blackout/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blackout/user.css -------------------------------------------------------------------------------- /Blossom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blossom/LICENSE -------------------------------------------------------------------------------- /Blossom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blossom/README.md -------------------------------------------------------------------------------- /Blossom/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blossom/color.ini -------------------------------------------------------------------------------- /Blossom/images/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blossom/images/album.png -------------------------------------------------------------------------------- /Blossom/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blossom/images/home.png -------------------------------------------------------------------------------- /Blossom/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Blossom/user.css -------------------------------------------------------------------------------- /BurntSienna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/BurntSienna/README.md -------------------------------------------------------------------------------- /BurntSienna/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/BurntSienna/color.ini -------------------------------------------------------------------------------- /BurntSienna/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/BurntSienna/screenshot.png -------------------------------------------------------------------------------- /BurntSienna/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/BurntSienna/user.css -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Default/README.md -------------------------------------------------------------------------------- /Default/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Default/color.ini -------------------------------------------------------------------------------- /Default/ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Default/ocean.png -------------------------------------------------------------------------------- /Dreary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dreary/README.md -------------------------------------------------------------------------------- /Dreary/bib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dreary/bib.png -------------------------------------------------------------------------------- /Dreary/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dreary/color.ini -------------------------------------------------------------------------------- /Dreary/deeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dreary/deeper.png -------------------------------------------------------------------------------- /Dreary/golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dreary/golden.png -------------------------------------------------------------------------------- /Dreary/graytone-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dreary/graytone-blue.png -------------------------------------------------------------------------------- /Dreary/mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dreary/mono.png -------------------------------------------------------------------------------- /Dreary/psycho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dreary/psycho.png -------------------------------------------------------------------------------- /Dreary/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dreary/user.css -------------------------------------------------------------------------------- /Dribbblish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/README.md -------------------------------------------------------------------------------- /Dribbblish/assets/glue-resources/fonts/GoogleSansDisplayMedium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/assets/glue-resources/fonts/GoogleSansDisplayMedium.woff2 -------------------------------------------------------------------------------- /Dribbblish/assets/glue-resources/fonts/GoogleSansDisplayRegular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/assets/glue-resources/fonts/GoogleSansDisplayRegular.woff2 -------------------------------------------------------------------------------- /Dribbblish/assets/glue-resources/fonts/Roboto.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/assets/glue-resources/fonts/Roboto.woff2 -------------------------------------------------------------------------------- /Dribbblish/assets/glue-resources/fonts/RobotoMedium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/assets/glue-resources/fonts/RobotoMedium.woff2 -------------------------------------------------------------------------------- /Dribbblish/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/base.png -------------------------------------------------------------------------------- /Dribbblish/beach-sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/beach-sunset.png -------------------------------------------------------------------------------- /Dribbblish/catppuccin-frappe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/catppuccin-frappe.png -------------------------------------------------------------------------------- /Dribbblish/catppuccin-latte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/catppuccin-latte.png -------------------------------------------------------------------------------- /Dribbblish/catppuccin-macchiato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/catppuccin-macchiato.png -------------------------------------------------------------------------------- /Dribbblish/catppuccin-mocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/catppuccin-mocha.png -------------------------------------------------------------------------------- /Dribbblish/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/color.ini -------------------------------------------------------------------------------- /Dribbblish/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/dark.png -------------------------------------------------------------------------------- /Dribbblish/gruvbox-material-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/gruvbox-material-dark.png -------------------------------------------------------------------------------- /Dribbblish/gruvbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/gruvbox.png -------------------------------------------------------------------------------- /Dribbblish/images/tracklist-row-song-fallback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/images/tracklist-row-song-fallback.svg -------------------------------------------------------------------------------- /Dribbblish/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/install.ps1 -------------------------------------------------------------------------------- /Dribbblish/lunar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/lunar.png -------------------------------------------------------------------------------- /Dribbblish/nord-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/nord-dark.png -------------------------------------------------------------------------------- /Dribbblish/nord-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/nord-light.png -------------------------------------------------------------------------------- /Dribbblish/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/purple.png -------------------------------------------------------------------------------- /Dribbblish/rosepine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/rosepine.png -------------------------------------------------------------------------------- /Dribbblish/samurai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/samurai.png -------------------------------------------------------------------------------- /Dribbblish/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/theme.js -------------------------------------------------------------------------------- /Dribbblish/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/uninstall.ps1 -------------------------------------------------------------------------------- /Dribbblish/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/user.css -------------------------------------------------------------------------------- /Dribbblish/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/white.png -------------------------------------------------------------------------------- /Dribbblish/windows-shortcut-instruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Dribbblish/windows-shortcut-instruction.png -------------------------------------------------------------------------------- /Flow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Flow/LICENSE -------------------------------------------------------------------------------- /Flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Flow/README.md -------------------------------------------------------------------------------- /Flow/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Flow/color.ini -------------------------------------------------------------------------------- /Flow/screenshots/ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Flow/screenshots/ocean.png -------------------------------------------------------------------------------- /Flow/screenshots/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Flow/screenshots/pink.png -------------------------------------------------------------------------------- /Flow/screenshots/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Flow/screenshots/silver.png -------------------------------------------------------------------------------- /Flow/screenshots/violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Flow/screenshots/violet.png -------------------------------------------------------------------------------- /Flow/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Flow/user.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/LICENSE -------------------------------------------------------------------------------- /Matte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/README.md -------------------------------------------------------------------------------- /Matte/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/color.ini -------------------------------------------------------------------------------- /Matte/screenshots/winctrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/screenshots/winctrl.png -------------------------------------------------------------------------------- /Matte/screenshots/ylx-gray-dark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/screenshots/ylx-gray-dark1.png -------------------------------------------------------------------------------- /Matte/screenshots/ylx-gray-dark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/screenshots/ylx-gray-dark2.png -------------------------------------------------------------------------------- /Matte/screenshots/ylx-gray-dark3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/screenshots/ylx-gray-dark3.png -------------------------------------------------------------------------------- /Matte/screenshots/ylx-gray-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/screenshots/ylx-gray-light.png -------------------------------------------------------------------------------- /Matte/screenshots/ylx-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/screenshots/ylx-gray.png -------------------------------------------------------------------------------- /Matte/screenshots/ylx-matte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/screenshots/ylx-matte.png -------------------------------------------------------------------------------- /Matte/screenshots/ylx-periwinkle-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/screenshots/ylx-periwinkle-dark.png -------------------------------------------------------------------------------- /Matte/screenshots/ylx-periwinkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/screenshots/ylx-periwinkle.png -------------------------------------------------------------------------------- /Matte/screenshots/ylx-porcelain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/screenshots/ylx-porcelain.png -------------------------------------------------------------------------------- /Matte/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Matte/user.css -------------------------------------------------------------------------------- /Nightlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Nightlight/README.md -------------------------------------------------------------------------------- /Nightlight/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Nightlight/color.ini -------------------------------------------------------------------------------- /Nightlight/screenshots/nightlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Nightlight/screenshots/nightlight.png -------------------------------------------------------------------------------- /Nightlight/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Nightlight/user.css -------------------------------------------------------------------------------- /Onepunch/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE -------------------------------------------------------------------------------- /Onepunch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/LICENSE -------------------------------------------------------------------------------- /Onepunch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/README.md -------------------------------------------------------------------------------- /Onepunch/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/color.ini -------------------------------------------------------------------------------- /Onepunch/screenshots/dark_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/dark_album.png -------------------------------------------------------------------------------- /Onepunch/screenshots/dark_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/dark_home.png -------------------------------------------------------------------------------- /Onepunch/screenshots/dark_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/dark_playlist.png -------------------------------------------------------------------------------- /Onepunch/screenshots/dark_podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/dark_podcast.png -------------------------------------------------------------------------------- /Onepunch/screenshots/dark_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/dark_profile.png -------------------------------------------------------------------------------- /Onepunch/screenshots/dark_ylx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/dark_ylx.png -------------------------------------------------------------------------------- /Onepunch/screenshots/display.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/display.gif -------------------------------------------------------------------------------- /Onepunch/screenshots/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/icons.png -------------------------------------------------------------------------------- /Onepunch/screenshots/legacy_ylx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/legacy_ylx.png -------------------------------------------------------------------------------- /Onepunch/screenshots/light_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/light_album.png -------------------------------------------------------------------------------- /Onepunch/screenshots/light_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/light_home.png -------------------------------------------------------------------------------- /Onepunch/screenshots/light_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/light_playlist.png -------------------------------------------------------------------------------- /Onepunch/screenshots/light_podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/light_podcast.png -------------------------------------------------------------------------------- /Onepunch/screenshots/light_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/light_profile.png -------------------------------------------------------------------------------- /Onepunch/screenshots/light_ylx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/screenshots/light_ylx.png -------------------------------------------------------------------------------- /Onepunch/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Onepunch/user.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/README.md -------------------------------------------------------------------------------- /SharkBlue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/SharkBlue/README.md -------------------------------------------------------------------------------- /SharkBlue/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/SharkBlue/color.ini -------------------------------------------------------------------------------- /SharkBlue/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/SharkBlue/screenshot.png -------------------------------------------------------------------------------- /SharkBlue/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/SharkBlue/user.css -------------------------------------------------------------------------------- /Sleek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/README.md -------------------------------------------------------------------------------- /Sleek/ayudark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/ayudark.png -------------------------------------------------------------------------------- /Sleek/bladerunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/bladerunner.png -------------------------------------------------------------------------------- /Sleek/catppuccin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/catppuccin.png -------------------------------------------------------------------------------- /Sleek/cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/cherry.png -------------------------------------------------------------------------------- /Sleek/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/color.ini -------------------------------------------------------------------------------- /Sleek/coral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/coral.png -------------------------------------------------------------------------------- /Sleek/deep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/deep.png -------------------------------------------------------------------------------- /Sleek/deeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/deeper.png -------------------------------------------------------------------------------- /Sleek/dracula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/dracula.png -------------------------------------------------------------------------------- /Sleek/eldritch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/eldritch.png -------------------------------------------------------------------------------- /Sleek/elementary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/elementary.png -------------------------------------------------------------------------------- /Sleek/futura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/futura.png -------------------------------------------------------------------------------- /Sleek/greener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/greener.png -------------------------------------------------------------------------------- /Sleek/nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/nord.png -------------------------------------------------------------------------------- /Sleek/psycho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/psycho.png -------------------------------------------------------------------------------- /Sleek/rosepine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/rosepine.png -------------------------------------------------------------------------------- /Sleek/ultrablack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/ultrablack.png -------------------------------------------------------------------------------- /Sleek/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/user.css -------------------------------------------------------------------------------- /Sleek/vantablack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/vantablack.png -------------------------------------------------------------------------------- /Sleek/wealthy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Sleek/wealthy.png -------------------------------------------------------------------------------- /StarryNight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/StarryNight/README.md -------------------------------------------------------------------------------- /StarryNight/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/StarryNight/color.ini -------------------------------------------------------------------------------- /StarryNight/images/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/StarryNight/images/base.png -------------------------------------------------------------------------------- /StarryNight/images/cotton-candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/StarryNight/images/cotton-candy.png -------------------------------------------------------------------------------- /StarryNight/images/forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/StarryNight/images/forest.png -------------------------------------------------------------------------------- /StarryNight/images/galaxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/StarryNight/images/galaxy.png -------------------------------------------------------------------------------- /StarryNight/images/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/StarryNight/images/orange.png -------------------------------------------------------------------------------- /StarryNight/images/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/StarryNight/images/sky.png -------------------------------------------------------------------------------- /StarryNight/images/sunrise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/StarryNight/images/sunrise.png -------------------------------------------------------------------------------- /StarryNight/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/StarryNight/theme.js -------------------------------------------------------------------------------- /StarryNight/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/StarryNight/user.css -------------------------------------------------------------------------------- /THEMES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/THEMES.md -------------------------------------------------------------------------------- /Turntable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Turntable/LICENSE -------------------------------------------------------------------------------- /Turntable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Turntable/README.md -------------------------------------------------------------------------------- /Turntable/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Turntable/color.ini -------------------------------------------------------------------------------- /Turntable/screenshots/blur_fad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Turntable/screenshots/blur_fad.png -------------------------------------------------------------------------------- /Turntable/screenshots/blur_fad_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Turntable/screenshots/blur_fad_vertical.png -------------------------------------------------------------------------------- /Turntable/screenshots/fad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Turntable/screenshots/fad.png -------------------------------------------------------------------------------- /Turntable/screenshots/fad_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Turntable/screenshots/fad_vertical.png -------------------------------------------------------------------------------- /Turntable/screenshots/turntable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Turntable/screenshots/turntable.png -------------------------------------------------------------------------------- /Turntable/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Turntable/theme.js -------------------------------------------------------------------------------- /Turntable/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Turntable/user.css -------------------------------------------------------------------------------- /Ziro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Ziro/LICENSE -------------------------------------------------------------------------------- /Ziro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Ziro/README.md -------------------------------------------------------------------------------- /Ziro/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Ziro/color.ini -------------------------------------------------------------------------------- /Ziro/screenshots/rose-pine-dawn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Ziro/screenshots/rose-pine-dawn.jpg -------------------------------------------------------------------------------- /Ziro/screenshots/rose-pine-moon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Ziro/screenshots/rose-pine-moon.jpg -------------------------------------------------------------------------------- /Ziro/screenshots/rose-pine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Ziro/screenshots/rose-pine.jpg -------------------------------------------------------------------------------- /Ziro/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/Ziro/user.css -------------------------------------------------------------------------------- /_Extra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/_Extra/README.md -------------------------------------------------------------------------------- /_Extra/SpotifyNoControl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/_Extra/SpotifyNoControl/README.md -------------------------------------------------------------------------------- /_Extra/SpotifyNoControl/SpotifyNoControl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/_Extra/SpotifyNoControl/SpotifyNoControl.exe -------------------------------------------------------------------------------- /_Extra/SpotifyNoControl/windows-shortcut-instruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/_Extra/SpotifyNoControl/windows-shortcut-instruction.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/manifest.json -------------------------------------------------------------------------------- /text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/README.md -------------------------------------------------------------------------------- /text/color.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/color.ini -------------------------------------------------------------------------------- /text/screenshots/CatppuccinLatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/CatppuccinLatte.png -------------------------------------------------------------------------------- /text/screenshots/CatppuccinMacchiato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/CatppuccinMacchiato.png -------------------------------------------------------------------------------- /text/screenshots/CatppuccinMocha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/CatppuccinMocha.png -------------------------------------------------------------------------------- /text/screenshots/Dracula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/Dracula.png -------------------------------------------------------------------------------- /text/screenshots/EverforestDarkMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/EverforestDarkMedium.png -------------------------------------------------------------------------------- /text/screenshots/ForestGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/ForestGreen.png -------------------------------------------------------------------------------- /text/screenshots/Gruvbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/Gruvbox.png -------------------------------------------------------------------------------- /text/screenshots/Kanagawa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/Kanagawa.png -------------------------------------------------------------------------------- /text/screenshots/Nord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/Nord.png -------------------------------------------------------------------------------- /text/screenshots/Rigel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/Rigel.png -------------------------------------------------------------------------------- /text/screenshots/RosePine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/RosePine.png -------------------------------------------------------------------------------- /text/screenshots/RosePineDawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/RosePineDawn.png -------------------------------------------------------------------------------- /text/screenshots/RosePineMoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/RosePineMoon.png -------------------------------------------------------------------------------- /text/screenshots/Solarized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/Solarized.png -------------------------------------------------------------------------------- /text/screenshots/Spicetify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/Spicetify.png -------------------------------------------------------------------------------- /text/screenshots/Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/Spotify.png -------------------------------------------------------------------------------- /text/screenshots/TokyoNight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/TokyoNight.png -------------------------------------------------------------------------------- /text/screenshots/TokyoNightStorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/TokyoNightStorm.png -------------------------------------------------------------------------------- /text/screenshots/winctrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/winctrl.png -------------------------------------------------------------------------------- /text/screenshots/withimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/withimg.png -------------------------------------------------------------------------------- /text/screenshots/withoutimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/screenshots/withoutimg.png -------------------------------------------------------------------------------- /text/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spicetify/spicetify-themes/HEAD/text/user.css --------------------------------------------------------------------------------