CIA Compliance Manager API Documentation - v1.1.6
    Preparing search index...

    Variable SECURITY_LEVEL_COLORSConst

    SECURITY_LEVEL_COLORS: {
        HIGH: string;
        LOW: string;
        MODERATE: string;
        NONE: string;
        VERY_HIGH: string;
    } = ...

    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.

    Type Declaration

    • HIGH: string
    • LOW: string
    • MODERATE: string
    • NONE: string
    • VERY_HIGH: string
    // Apply color based on security level
    const level = 'High';
    const color = SECURITY_LEVEL_COLORS.HIGH; // "#2ecc71" (green)

    // In styled component
    <Badge style={{ backgroundColor: color }}>
    {level}
    </Badge>