├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── .gitkeep ├── frappe.webp ├── latte.webp ├── macchiato.webp ├── mocha.webp └── preview.webp ├── justfile ├── renovate.json ├── templates ├── all.tera └── spyder.tera └── themes ├── all.ini ├── frappe.ini ├── latte.ini ├── macchiato.ini └── mocha.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/README.md -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/assets/frappe.webp -------------------------------------------------------------------------------- /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/assets/latte.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/assets/macchiato.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/assets/mocha.webp -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/assets/preview.webp -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/justfile -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/renovate.json -------------------------------------------------------------------------------- /templates/all.tera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/templates/all.tera -------------------------------------------------------------------------------- /templates/spyder.tera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/templates/spyder.tera -------------------------------------------------------------------------------- /themes/all.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/themes/all.ini -------------------------------------------------------------------------------- /themes/frappe.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/themes/frappe.ini -------------------------------------------------------------------------------- /themes/latte.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/themes/latte.ini -------------------------------------------------------------------------------- /themes/macchiato.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/themes/macchiato.ini -------------------------------------------------------------------------------- /themes/mocha.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/spyder/HEAD/themes/mocha.ini --------------------------------------------------------------------------------