/** * Functional color module for npmglobalize. * Uses semantic names (success, warn, error, info, muted) instead of raw colors. * Adapts to light/dark terminal backgrounds. */ /** Semantic color functions — use these instead of raw colors */ export declare const colors: { /** Success: green on both themes */ success: (text: string) => string; /** Warning: yellow on dark, magenta on light */ warn: (text: string) => string; /** Error: red on both themes */ error: (text: string) => string; /** Info: blue on both themes */ info: (text: string) => string; /** Accent: cyan on both themes */ accent: (text: string) => string; /** Muted/dim text */ muted: (text: string) => string; /** Italic */ italic: (text: string) => string; red: (text: string) => string; yellow: (text: string) => string; green: (text: string) => string; blue: (text: string) => string; cyan: (text: string) => string; dim: (text: string) => string; }; //# sourceMappingURL=colors.d.ts.map