Color palette for representing security levels visually. Colors progress
from red (None) through orange/yellow (Low/Moderate) to green/blue
(High/Very High), providing intuitive visual feedback on security posture.
Type Declaration
HIGH: string
LOW: string
MODERATE: string
NONE: string
VERY_HIGH: string
Example
// Apply color based on security level constlevel = 'High'; constcolor = SECURITY_LEVEL_COLORS.HIGH; // "#2ecc71" (green)
// In styled component <Badgestyle={{ backgroundColor: color }}> {level} </Badge>
Security level color scheme mapping.
Color palette for representing security levels visually. Colors progress from red (None) through orange/yellow (Low/Moderate) to green/blue (High/Very High), providing intuitive visual feedback on security posture.