/*
 * CycleHub Theme Overrides
 *
 * This file is copied to /theme-overrides.css in the CycleHub Docker image.
 * It overrides the default DaisyUI theme colors with CycleHub brand colors.
 *
 * Primary color from CycleHub logo gradient: #0078b8 to #005a8c
 * oklch(52% 0.14 235) = approximately #0078b8
 */

/* Override corporate (light) theme with CycleHub brand colors */
[data-theme="corporate"] {
  --color-primary: oklch(52% 0.14 235);
  --color-primary-content: oklch(98% 0.01 235);
}

/* Override business (dark) theme with CycleHub brand colors */
[data-theme="business"] {
  --color-primary: oklch(52% 0.14 235);
  --color-primary-content: oklch(98% 0.01 235);
}

/* Override meta theme-color for mobile browsers */
:root {
  --cyclehub-brand-color: #0078b8;
}
