/**
 * HRMS Brand Colors
 *
 * This file defines the brand colors for the HRMS application.
 * Use these color constants throughout the application to maintain consistency.
 */

export const COLORS = {
  // Primary brand colors
  PRIMARY: "#00A86B", // Emerald Mercury
  ACCENT: "#FFC107", // Jupiter Gold
  SECONDARY: "#0B3D91", // Trust Navy
  SUPPORT: "#F5F7FA", // Moon White
  INK: "#2E2E2E", // Ink Charcoal

  // Opacity variants
  PRIMARY_LIGHT: "#00A86B20",
  ACCENT_LIGHT: "#FFC10720",
  SECONDARY_LIGHT: "#0B3D9120",
  INK_LIGHT: "#2E2E2E20",

  // Semantic colors
  SUCCESS: "#00A86B", // Using Primary (Emerald Mercury)
  WARNING: "#FFC107", // Using Accent (Jupiter Gold)
  ERROR: "#e11d48",
  INFO: "#0B3D91", // Using Secondary (Trust Navy)
};

// Export color names for documentation
export const COLOR_NAMES = {
  PRIMARY: "Emerald Mercury",
  ACCENT: "Jupiter Gold",
  SECONDARY: "Trust Navy",
  SUPPORT: "Moon White",
  INK: "Ink Charcoal",
};
