├── .editorconfig ├── LICENSE ├── README.md ├── assets └── previews │ ├── frappe.webp │ ├── latte.webp │ ├── macchiato.webp │ ├── mocha.webp │ └── preview.webp ├── justfile ├── midnight.tera └── themes ├── frappe-blue.css ├── frappe-flamingo.css ├── frappe-green.css ├── frappe-lavender.css ├── frappe-maroon.css ├── frappe-mauve.css ├── frappe-peach.css ├── frappe-pink.css ├── frappe-red.css ├── frappe-rosewater.css ├── frappe-sapphire.css ├── frappe-sky.css ├── frappe-teal.css ├── frappe-yellow.css ├── latte-blue.css ├── latte-flamingo.css ├── latte-green.css ├── latte-lavender.css ├── latte-maroon.css ├── latte-mauve.css ├── latte-peach.css ├── latte-pink.css ├── latte-red.css ├── latte-rosewater.css ├── latte-sapphire.css ├── latte-sky.css ├── latte-teal.css ├── latte-yellow.css ├── macchiato-blue.css ├── macchiato-flamingo.css ├── macchiato-green.css ├── macchiato-lavender.css ├── macchiato-maroon.css ├── macchiato-mauve.css ├── macchiato-peach.css ├── macchiato-pink.css ├── macchiato-red.css ├── macchiato-rosewater.css ├── macchiato-sapphire.css ├── macchiato-sky.css ├── macchiato-teal.css ├── macchiato-yellow.css ├── mocha-blue.css ├── mocha-flamingo.css ├── mocha-green.css ├── mocha-lavender.css ├── mocha-maroon.css ├── mocha-mauve.css ├── mocha-peach.css ├── mocha-pink.css ├── mocha-red.css ├── mocha-rosewater.css ├── mocha-sapphire.css ├── mocha-sky.css ├── mocha-teal.css └── mocha-yellow.css /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/.editorconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/README.md -------------------------------------------------------------------------------- /assets/previews/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/assets/previews/frappe.webp -------------------------------------------------------------------------------- /assets/previews/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/assets/previews/latte.webp -------------------------------------------------------------------------------- /assets/previews/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/assets/previews/macchiato.webp -------------------------------------------------------------------------------- /assets/previews/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/assets/previews/mocha.webp -------------------------------------------------------------------------------- /assets/previews/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/assets/previews/preview.webp -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- 1 | _default: 2 | @just --list 3 | 4 | build: 5 | whiskers midnight.tera 6 | -------------------------------------------------------------------------------- /midnight.tera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/midnight.tera -------------------------------------------------------------------------------- /themes/frappe-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-blue.css -------------------------------------------------------------------------------- /themes/frappe-flamingo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-flamingo.css -------------------------------------------------------------------------------- /themes/frappe-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-green.css -------------------------------------------------------------------------------- /themes/frappe-lavender.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-lavender.css -------------------------------------------------------------------------------- /themes/frappe-maroon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-maroon.css -------------------------------------------------------------------------------- /themes/frappe-mauve.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-mauve.css -------------------------------------------------------------------------------- /themes/frappe-peach.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-peach.css -------------------------------------------------------------------------------- /themes/frappe-pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-pink.css -------------------------------------------------------------------------------- /themes/frappe-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-red.css -------------------------------------------------------------------------------- /themes/frappe-rosewater.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-rosewater.css -------------------------------------------------------------------------------- /themes/frappe-sapphire.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-sapphire.css -------------------------------------------------------------------------------- /themes/frappe-sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-sky.css -------------------------------------------------------------------------------- /themes/frappe-teal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-teal.css -------------------------------------------------------------------------------- /themes/frappe-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/frappe-yellow.css -------------------------------------------------------------------------------- /themes/latte-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-blue.css -------------------------------------------------------------------------------- /themes/latte-flamingo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-flamingo.css -------------------------------------------------------------------------------- /themes/latte-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-green.css -------------------------------------------------------------------------------- /themes/latte-lavender.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-lavender.css -------------------------------------------------------------------------------- /themes/latte-maroon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-maroon.css -------------------------------------------------------------------------------- /themes/latte-mauve.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-mauve.css -------------------------------------------------------------------------------- /themes/latte-peach.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-peach.css -------------------------------------------------------------------------------- /themes/latte-pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-pink.css -------------------------------------------------------------------------------- /themes/latte-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-red.css -------------------------------------------------------------------------------- /themes/latte-rosewater.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-rosewater.css -------------------------------------------------------------------------------- /themes/latte-sapphire.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-sapphire.css -------------------------------------------------------------------------------- /themes/latte-sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-sky.css -------------------------------------------------------------------------------- /themes/latte-teal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-teal.css -------------------------------------------------------------------------------- /themes/latte-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/latte-yellow.css -------------------------------------------------------------------------------- /themes/macchiato-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-blue.css -------------------------------------------------------------------------------- /themes/macchiato-flamingo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-flamingo.css -------------------------------------------------------------------------------- /themes/macchiato-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-green.css -------------------------------------------------------------------------------- /themes/macchiato-lavender.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-lavender.css -------------------------------------------------------------------------------- /themes/macchiato-maroon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-maroon.css -------------------------------------------------------------------------------- /themes/macchiato-mauve.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-mauve.css -------------------------------------------------------------------------------- /themes/macchiato-peach.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-peach.css -------------------------------------------------------------------------------- /themes/macchiato-pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-pink.css -------------------------------------------------------------------------------- /themes/macchiato-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-red.css -------------------------------------------------------------------------------- /themes/macchiato-rosewater.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-rosewater.css -------------------------------------------------------------------------------- /themes/macchiato-sapphire.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-sapphire.css -------------------------------------------------------------------------------- /themes/macchiato-sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-sky.css -------------------------------------------------------------------------------- /themes/macchiato-teal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-teal.css -------------------------------------------------------------------------------- /themes/macchiato-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/macchiato-yellow.css -------------------------------------------------------------------------------- /themes/mocha-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-blue.css -------------------------------------------------------------------------------- /themes/mocha-flamingo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-flamingo.css -------------------------------------------------------------------------------- /themes/mocha-green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-green.css -------------------------------------------------------------------------------- /themes/mocha-lavender.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-lavender.css -------------------------------------------------------------------------------- /themes/mocha-maroon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-maroon.css -------------------------------------------------------------------------------- /themes/mocha-mauve.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-mauve.css -------------------------------------------------------------------------------- /themes/mocha-peach.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-peach.css -------------------------------------------------------------------------------- /themes/mocha-pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-pink.css -------------------------------------------------------------------------------- /themes/mocha-red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-red.css -------------------------------------------------------------------------------- /themes/mocha-rosewater.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-rosewater.css -------------------------------------------------------------------------------- /themes/mocha-sapphire.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-sapphire.css -------------------------------------------------------------------------------- /themes/mocha-sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-sky.css -------------------------------------------------------------------------------- /themes/mocha-teal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-teal.css -------------------------------------------------------------------------------- /themes/mocha-yellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uncenter/ctp-midnight/HEAD/themes/mocha-yellow.css --------------------------------------------------------------------------------