/** * JetStart Brand Colors * Official color palette for consistent branding */ export declare const BRAND_COLORS: { readonly ORANGE: "#FA8F14"; readonly RED_ORANGE: "#F04023"; readonly DARK_PURPLE: "#160E36"; readonly DEEPER_PURPLE: "#120A24"; readonly CREAM: "#F8F3F0"; }; /** * Terminal color codes for CLI output */ export declare const TERMINAL_COLORS: { readonly ORANGE: "\u001B[38;2;250;143;20m"; readonly RED_ORANGE: "\u001B[38;2;240;64;35m"; readonly CREAM: "\u001B[38;2;248;243;240m"; readonly BG_DARK_PURPLE: "\u001B[48;2;22;14;54m"; readonly BG_DEEPER_PURPLE: "\u001B[48;2;18;10;36m"; readonly RESET: "\u001B[0m"; readonly BOLD: "\u001B[1m"; readonly DIM: "\u001B[2m"; }; /** * Helper function to colorize terminal output */ export declare function colorize(text: string, color: keyof typeof TERMINAL_COLORS): string; /** * Commonly used color combinations */ export declare const COLOR_PRESETS: { readonly success: (text: string) => string; readonly error: (text: string) => string; readonly info: (text: string) => string; readonly highlight: (text: string) => string; }; //# sourceMappingURL=colors.d.ts.map