/** * Theme - Centralized color palette and styling for mage-db-sync * * 4-Color Design System: * - Primary (Cyan): Information, progress, highlights * - Success (Green): Success states, completion * - Warning (Amber): Warnings, cautions * - Error (Red): Errors, failures */ export declare const colors: { readonly primary: "#00D9FF"; readonly success: "#00FF88"; readonly warning: "#FFB800"; readonly error: "#FF5370"; readonly muted: "#6B7280"; readonly text: "#F3F4F6"; }; export declare const theme: { readonly primary: (text: string) => string; readonly success: (text: string) => string; readonly warning: (text: string) => string; readonly error: (text: string) => string; readonly muted: (text: string) => string; readonly text: (text: string) => string; readonly bold: (text: string) => string; readonly dim: (text: string) => string; readonly primaryBold: (text: string) => string; readonly successBold: (text: string) => string; readonly warningBold: (text: string) => string; readonly errorBold: (text: string) => string; readonly prefix: { readonly info: string; readonly success: string; readonly warning: string; readonly error: string; readonly arrow: string; readonly bullet: string; }; }; export declare const box: { readonly topLeft: "╭"; readonly topRight: "╮"; readonly bottomLeft: "╰"; readonly bottomRight: "╯"; readonly horizontal: "─"; readonly vertical: "│"; readonly divider: "├"; readonly dividerRight: "┤"; }; export declare const progress: { readonly complete: "█"; readonly incomplete: "░"; readonly spinner: readonly ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"]; }; export default theme; //# sourceMappingURL=Theme.d.ts.map