/** * Color System * * Semantic color functions with TTY awareness * @module utils/ui/colors */ import type { SemanticColor } from '../../types/utils'; /** * Apply semantic color to text */ export declare function color(text: string, semantic: SemanticColor): string; /** * Apply gradient to text (for headers) * Uses cyan-to-blue gradient for professional look */ export declare function gradientText(text: string): string; /** * Bold text */ export declare function bold(text: string): string; /** * Dim text */ export declare function dim(text: string): string; //# sourceMappingURL=colors.d.ts.map