├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── theme-bug.yaml │ ├── theme-creator-bug.yaml │ ├── theme-creator-feature-request.yaml │ └── theme-request.yaml └── SECURITY.md ├── .gitignore ├── LICENSE ├── README.md ├── src ├── example-pbcolors │ ├── HEXA.pbcolors │ ├── RGBA.pbcolors │ └── SRGBA.pbcolors ├── main.py ├── modules │ ├── colors.py │ └── pbcolors.py ├── pbt.bat ├── pbt.sh └── requirements.txt ├── themes-list.json └── themes ├── catppuccin └── mocha │ ├── blue │ ├── dark.png │ ├── light.png │ └── theme.pbcolors │ └── green │ ├── dark.png │ ├── light.png │ └── theme.pbcolors └── old ├── Celarye & Minty ├── Cyberpunk 2077 │ ├── CyberpunkMain.pbcolors │ ├── gagslide.pbcolors │ └── night_city.pbcolors └── Minty │ ├── Dark1.png │ ├── Light2.png │ └── Minty.pbcolors ├── Celarye & Spot └── Anilist │ ├── Anilist │ ├── Anilist.pbcolors │ ├── Dark.png │ └── Light.png │ └── HighContrastAnilist │ ├── Dark.png │ ├── HighContrastAnilist.pbcolors │ └── Light.png ├── Celarye ├── Apple │ └── MidnightBlue │ │ ├── MidnightBlue.pbcolors │ │ └── exampleImage.png ├── Basic (TEMP) │ ├── CelaryeBlue.pbcolors │ ├── CherryBlossomPink.pbcolors │ ├── Gray.pbcolors │ ├── Paperback │ │ ├── PaperbackBlue.pbcolors │ │ ├── PaperbackPurple.pbcolors │ │ └── PaperbackRed.pbcolors │ └── Turquoise.pbcolors ├── Discord │ ├── DarkDiscord │ │ ├── DarkDiscordBlue │ │ │ ├── Dark.png │ │ │ ├── DarkDiscordBlue.pbcolors │ │ │ └── Light.png │ │ ├── DarkDiscordPink │ │ │ ├── Dark.png │ │ │ ├── DarkDiscordPink.pbcolors │ │ │ └── Light.png │ │ └── DarkDiscordPurple │ │ │ ├── Dark.png │ │ │ ├── DarkDiscordPurple.pbcolors │ │ │ └── Light.png │ └── Discord │ │ ├── DiscordBlue │ │ ├── Dark.png │ │ ├── DiscordBlue.pbcolors │ │ └── Light.png │ │ ├── DiscordPink │ │ ├── Dark.png │ │ ├── DiscordPink.pbcolors │ │ └── Light.png │ │ └── DiscordPurple │ │ ├── Dark.png │ │ ├── DiscordPurple.pbcolors │ │ └── Light.png ├── MonsterEnergy │ ├── MonsterEnergyGreen │ │ ├── Dark.png │ │ ├── Light.png │ │ └── MonsterEnergyGreen.pbcolors │ └── MonsterEnergyMule │ │ ├── Dark.png │ │ ├── Light.png │ │ └── MonsterEnergyMule.pbcolors ├── Requests │ └── NarutoSakura │ │ ├── Dark.png │ │ ├── Light.png │ │ └── NarutoSakura.pbcolors ├── Spotify │ ├── Spotify.pbcolors │ └── exampleImage.png └── Twitter │ ├── DimTwitter │ ├── Dark.png │ ├── DimTwitter.pbcolors │ └── Light.png │ └── LightsOutTwitter │ ├── Dark.png │ ├── Light.png │ └── LightsOutTwitter.pbcolors ├── Spot └── BlackAndWhite │ ├── BlackAndWhite.pbcolors │ ├── Dark.png │ └── Light.png └── borboss └── Nord ├── Nord.pbcolors └── exampleImage.png /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/theme-bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/.github/ISSUE_TEMPLATE/theme-bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/theme-creator-bug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/.github/ISSUE_TEMPLATE/theme-creator-bug.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/theme-creator-feature-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/.github/ISSUE_TEMPLATE/theme-creator-feature-request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/theme-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/.github/ISSUE_TEMPLATE/theme-request.yaml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/README.md -------------------------------------------------------------------------------- /src/example-pbcolors/HEXA.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/src/example-pbcolors/HEXA.pbcolors -------------------------------------------------------------------------------- /src/example-pbcolors/RGBA.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/src/example-pbcolors/RGBA.pbcolors -------------------------------------------------------------------------------- /src/example-pbcolors/SRGBA.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/src/example-pbcolors/SRGBA.pbcolors -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/src/main.py -------------------------------------------------------------------------------- /src/modules/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/src/modules/colors.py -------------------------------------------------------------------------------- /src/modules/pbcolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/src/modules/pbcolors.py -------------------------------------------------------------------------------- /src/pbt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/src/pbt.bat -------------------------------------------------------------------------------- /src/pbt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/src/pbt.sh -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /themes-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes-list.json -------------------------------------------------------------------------------- /themes/catppuccin/mocha/blue/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/catppuccin/mocha/blue/dark.png -------------------------------------------------------------------------------- /themes/catppuccin/mocha/blue/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/catppuccin/mocha/blue/light.png -------------------------------------------------------------------------------- /themes/catppuccin/mocha/blue/theme.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/catppuccin/mocha/blue/theme.pbcolors -------------------------------------------------------------------------------- /themes/catppuccin/mocha/green/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/catppuccin/mocha/green/dark.png -------------------------------------------------------------------------------- /themes/catppuccin/mocha/green/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/catppuccin/mocha/green/light.png -------------------------------------------------------------------------------- /themes/catppuccin/mocha/green/theme.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/catppuccin/mocha/green/theme.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye & Minty/Cyberpunk 2077/CyberpunkMain.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Minty/Cyberpunk 2077/CyberpunkMain.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye & Minty/Cyberpunk 2077/gagslide.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Minty/Cyberpunk 2077/gagslide.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye & Minty/Cyberpunk 2077/night_city.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Minty/Cyberpunk 2077/night_city.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye & Minty/Minty/Dark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Minty/Minty/Dark1.png -------------------------------------------------------------------------------- /themes/old/Celarye & Minty/Minty/Light2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Minty/Minty/Light2.png -------------------------------------------------------------------------------- /themes/old/Celarye & Minty/Minty/Minty.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Minty/Minty/Minty.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye & Spot/Anilist/Anilist/Anilist.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Spot/Anilist/Anilist/Anilist.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye & Spot/Anilist/Anilist/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Spot/Anilist/Anilist/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye & Spot/Anilist/Anilist/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Spot/Anilist/Anilist/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye & Spot/Anilist/HighContrastAnilist/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Spot/Anilist/HighContrastAnilist/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye & Spot/Anilist/HighContrastAnilist/HighContrastAnilist.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Spot/Anilist/HighContrastAnilist/HighContrastAnilist.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye & Spot/Anilist/HighContrastAnilist/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye & Spot/Anilist/HighContrastAnilist/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/Apple/MidnightBlue/MidnightBlue.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Apple/MidnightBlue/MidnightBlue.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Apple/MidnightBlue/exampleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Apple/MidnightBlue/exampleImage.png -------------------------------------------------------------------------------- /themes/old/Celarye/Basic (TEMP)/CelaryeBlue.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Basic (TEMP)/CelaryeBlue.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Basic (TEMP)/CherryBlossomPink.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Basic (TEMP)/CherryBlossomPink.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Basic (TEMP)/Gray.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Basic (TEMP)/Gray.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Basic (TEMP)/Paperback/PaperbackBlue.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Basic (TEMP)/Paperback/PaperbackBlue.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Basic (TEMP)/Paperback/PaperbackPurple.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Basic (TEMP)/Paperback/PaperbackPurple.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Basic (TEMP)/Paperback/PaperbackRed.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Basic (TEMP)/Paperback/PaperbackRed.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Basic (TEMP)/Turquoise.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Basic (TEMP)/Turquoise.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/DarkDiscord/DarkDiscordBlue/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/DarkDiscord/DarkDiscordBlue/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/DarkDiscord/DarkDiscordBlue/DarkDiscordBlue.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/DarkDiscord/DarkDiscordBlue/DarkDiscordBlue.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/DarkDiscord/DarkDiscordBlue/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/DarkDiscord/DarkDiscordBlue/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPink/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPink/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPink/DarkDiscordPink.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPink/DarkDiscordPink.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPink/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPink/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPurple/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPurple/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPurple/DarkDiscordPurple.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPurple/DarkDiscordPurple.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPurple/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/DarkDiscord/DarkDiscordPurple/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/Discord/DiscordBlue/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/Discord/DiscordBlue/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/Discord/DiscordBlue/DiscordBlue.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/Discord/DiscordBlue/DiscordBlue.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/Discord/DiscordBlue/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/Discord/DiscordBlue/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/Discord/DiscordPink/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/Discord/DiscordPink/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/Discord/DiscordPink/DiscordPink.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/Discord/DiscordPink/DiscordPink.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/Discord/DiscordPink/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/Discord/DiscordPink/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/Discord/DiscordPurple/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/Discord/DiscordPurple/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/Discord/DiscordPurple/DiscordPurple.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/Discord/DiscordPurple/DiscordPurple.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Discord/Discord/DiscordPurple/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Discord/Discord/DiscordPurple/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/MonsterEnergy/MonsterEnergyGreen/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/MonsterEnergy/MonsterEnergyGreen/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye/MonsterEnergy/MonsterEnergyGreen/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/MonsterEnergy/MonsterEnergyGreen/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/MonsterEnergy/MonsterEnergyGreen/MonsterEnergyGreen.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/MonsterEnergy/MonsterEnergyGreen/MonsterEnergyGreen.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/MonsterEnergy/MonsterEnergyMule/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/MonsterEnergy/MonsterEnergyMule/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye/MonsterEnergy/MonsterEnergyMule/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/MonsterEnergy/MonsterEnergyMule/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/MonsterEnergy/MonsterEnergyMule/MonsterEnergyMule.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/MonsterEnergy/MonsterEnergyMule/MonsterEnergyMule.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Requests/NarutoSakura/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Requests/NarutoSakura/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye/Requests/NarutoSakura/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Requests/NarutoSakura/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/Requests/NarutoSakura/NarutoSakura.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Requests/NarutoSakura/NarutoSakura.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Spotify/Spotify.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Spotify/Spotify.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Spotify/exampleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Spotify/exampleImage.png -------------------------------------------------------------------------------- /themes/old/Celarye/Twitter/DimTwitter/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Twitter/DimTwitter/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye/Twitter/DimTwitter/DimTwitter.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Twitter/DimTwitter/DimTwitter.pbcolors -------------------------------------------------------------------------------- /themes/old/Celarye/Twitter/DimTwitter/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Twitter/DimTwitter/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/Twitter/LightsOutTwitter/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Twitter/LightsOutTwitter/Dark.png -------------------------------------------------------------------------------- /themes/old/Celarye/Twitter/LightsOutTwitter/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Twitter/LightsOutTwitter/Light.png -------------------------------------------------------------------------------- /themes/old/Celarye/Twitter/LightsOutTwitter/LightsOutTwitter.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Celarye/Twitter/LightsOutTwitter/LightsOutTwitter.pbcolors -------------------------------------------------------------------------------- /themes/old/Spot/BlackAndWhite/BlackAndWhite.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Spot/BlackAndWhite/BlackAndWhite.pbcolors -------------------------------------------------------------------------------- /themes/old/Spot/BlackAndWhite/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Spot/BlackAndWhite/Dark.png -------------------------------------------------------------------------------- /themes/old/Spot/BlackAndWhite/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/Spot/BlackAndWhite/Light.png -------------------------------------------------------------------------------- /themes/old/borboss/Nord/Nord.pbcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/borboss/Nord/Nord.pbcolors -------------------------------------------------------------------------------- /themes/old/borboss/Nord/exampleImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celarye/paperback-themes/HEAD/themes/old/borboss/Nord/exampleImage.png --------------------------------------------------------------------------------