/*
 * Dinolift Theme Overrides
 *
 * This file overrides the default DaisyUI theme colors.
 * Edit the colors below to match your brand.
 */

/* Light theme (corporate) */
[data-theme="corporate"] {
  /* Primary color - emerald/teal green */
  --color-primary: oklch(60% 0.16 160);
  --color-primary-content: oklch(98% 0.01 160);

  /* Optional: Override other colors */
  --color-secondary: oklch(65% 0.12 180);
  --color-accent: oklch(70% 0.15 140);
}

/* Dark theme (business) */
[data-theme="business"] {
  /* Primary color - deeper emerald green */
  --color-primary: oklch(55% 0.15 160);
  --color-primary-content: oklch(98% 0.01 160);
}