mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
12 lines
951 B
TypeScript
12 lines
951 B
TypeScript
|
import { BundledThemeInfo, DynamicImportThemeRegistration } from 'shikiji-core';
|
||
|
|
||
|
/**
|
||
|
* Generated by scripts/prepare.ts
|
||
|
*/
|
||
|
|
||
|
declare const bundledThemesInfo: BundledThemeInfo[];
|
||
|
type BundledTheme = 'aurora-x' | 'catppuccin-frappe' | 'catppuccin-latte' | 'catppuccin-macchiato' | 'catppuccin-mocha' | 'dark-plus' | 'dracula' | 'dracula-soft' | 'github-dark' | 'github-dark-dimmed' | 'github-light' | 'light-plus' | 'material-theme' | 'material-theme-darker' | 'material-theme-lighter' | 'material-theme-ocean' | 'material-theme-palenight' | 'min-dark' | 'min-light' | 'monokai' | 'nord' | 'one-dark-pro' | 'poimandres' | 'red' | 'rose-pine' | 'rose-pine-dawn' | 'rose-pine-moon' | 'slack-dark' | 'slack-ochin' | 'solarized-dark' | 'solarized-light' | 'vitesse-black' | 'vitesse-dark' | 'vitesse-light';
|
||
|
declare const bundledThemes: Record<BundledTheme, DynamicImportThemeRegistration>;
|
||
|
|
||
|
export { type BundledTheme, bundledThemes, bundledThemesInfo };
|