├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── frappe.webp ├── latte.webp ├── macchiato.webp ├── mocha.webp ├── mochatty.png └── res.webp ├── justfile ├── themes ├── frappe.txt ├── latte.txt ├── macchiato.txt └── mocha.txt └── tty.tera /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/README.md -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/assets/frappe.webp -------------------------------------------------------------------------------- /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/assets/latte.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/assets/macchiato.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/assets/mocha.webp -------------------------------------------------------------------------------- /assets/mochatty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/assets/mochatty.png -------------------------------------------------------------------------------- /assets/res.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/assets/res.webp -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/justfile -------------------------------------------------------------------------------- /themes/frappe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/themes/frappe.txt -------------------------------------------------------------------------------- /themes/latte.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/themes/latte.txt -------------------------------------------------------------------------------- /themes/macchiato.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/themes/macchiato.txt -------------------------------------------------------------------------------- /themes/mocha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/themes/mocha.txt -------------------------------------------------------------------------------- /tty.tera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/tty/HEAD/tty.tera --------------------------------------------------------------------------------