├── .github └── workflows │ └── enum_themes.yml ├── 128.png ├── LICENSE ├── README.md ├── Themes ├── 14ag │ └── afterglow │ │ └── unit.wpth ├── Abdelrhman-AK │ ├── Avici01 │ │ ├── Avici01.wpth │ │ └── Avici01.wptp │ └── Windows98 │ │ ├── Windows98.wpth │ │ └── Windows98.wptp ├── heatherpiper │ ├── Moonlight │ │ ├── Moonlight.wpth │ │ └── Moonlight.wptp │ └── Nord Polar Nights │ │ ├── Nord Polar Night.wpth │ │ └── Nord Polar Night.wptp ├── negimox │ └── Dracula │ │ └── dracula_palette.wpth └── ottozumkeller │ └── Fluid Dark │ └── fluid_dark.wpth ├── main.py └── store.wpdb /.github/workflows/enum_themes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/.github/workflows/enum_themes.yml -------------------------------------------------------------------------------- /128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/128.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/README.md -------------------------------------------------------------------------------- /Themes/14ag/afterglow/unit.wpth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/Themes/14ag/afterglow/unit.wpth -------------------------------------------------------------------------------- /Themes/Abdelrhman-AK/Avici01/Avici01.wpth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/Themes/Abdelrhman-AK/Avici01/Avici01.wpth -------------------------------------------------------------------------------- /Themes/Abdelrhman-AK/Avici01/Avici01.wptp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/Themes/Abdelrhman-AK/Avici01/Avici01.wptp -------------------------------------------------------------------------------- /Themes/Abdelrhman-AK/Windows98/Windows98.wpth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/Themes/Abdelrhman-AK/Windows98/Windows98.wpth -------------------------------------------------------------------------------- /Themes/Abdelrhman-AK/Windows98/Windows98.wptp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/Themes/Abdelrhman-AK/Windows98/Windows98.wptp -------------------------------------------------------------------------------- /Themes/heatherpiper/Moonlight/Moonlight.wpth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/Themes/heatherpiper/Moonlight/Moonlight.wpth -------------------------------------------------------------------------------- /Themes/heatherpiper/Moonlight/Moonlight.wptp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/Themes/heatherpiper/Moonlight/Moonlight.wptp -------------------------------------------------------------------------------- /Themes/heatherpiper/Nord Polar Nights/Nord Polar Night.wpth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/Themes/heatherpiper/Nord Polar Nights/Nord Polar Night.wpth -------------------------------------------------------------------------------- /Themes/heatherpiper/Nord Polar Nights/Nord Polar Night.wptp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/Themes/heatherpiper/Nord Polar Nights/Nord Polar Night.wptp -------------------------------------------------------------------------------- /Themes/negimox/Dracula/dracula_palette.wpth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/Themes/negimox/Dracula/dracula_palette.wpth -------------------------------------------------------------------------------- /Themes/ottozumkeller/Fluid Dark/fluid_dark.wpth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/Themes/ottozumkeller/Fluid Dark/fluid_dark.wpth -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/main.py -------------------------------------------------------------------------------- /store.wpdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Abdelrhman-AK/WinPaletter-Store/HEAD/store.wpdb --------------------------------------------------------------------------------