/** * CIA Component Color Utilities * * Provides consistent color styling for Confidentiality, Integrity, and Availability components * across the application. These utilities ensure visual consistency and proper theme support. */ import type { CIAComponent } from "../types/cia"; export interface CIAColors { bg: string; text: string; border: string; badge: string; } /** * Get consistent color classes for CIA components * * @param component - The CIA component type * @returns Object with Tailwind color classes for different uses * * @example * ```typescript * const colors = getCIAColors('confidentiality'); *