/** * Shared Health & Severity Color Utilities * * Theme-aware color functions for health grades, severity levels, * and score values. Replaces hardcoded named ANSI colors with * theme tokens for cross-platform consistency. * * @since v2.3.10 */ import type { ThemeColors } from '../themes/types.js'; /** * Get theme color for health grade (A+ through F) */ export declare function getGradeColor(grade: string, colors: ThemeColors): string; /** * Get theme color for severity level (critical/warning/info) */ export declare function getSeverityColor(severity: string, colors: ThemeColors): string; /** * Get ASCII icon for severity level */ export declare function getSeverityIcon(severity: string): string; /** * Get theme color for a numeric score (0-100) */ export declare function getScoreColor(score: number, colors: ThemeColors): string; /** * Get theme color for component health status (good/warning/critical) */ export declare function getStatusColor(status: string, colors: ThemeColors): string; /** * Get theme color for risk level (low/medium/high/critical) */ export declare function getRiskColor(level: string, colors: ThemeColors): string; //# sourceMappingURL=health-colors.d.ts.map