virtue-cli
Version:
Personal character development CLI tool for tracking virtues and philosophical alignment
11 lines • 408 B
TypeScript
export interface Theme {
primary: (text: string) => string;
secondary: (text: string) => string;
success: (text: string) => string;
warning: (text: string) => string;
error: (text: string) => string;
muted: (text: string) => string;
}
export declare const themes: Record<string, Theme>;
export declare function getTheme(themeName?: string): Theme;
//# sourceMappingURL=themes.d.ts.map