/*
  DaisyUI theme overrides for backend.
  Edit the --theme-* values below to quickly change the app colors.
*/

:root {
  /* Brand palette (edit these) */

  --theme-primary: oklch(80.261% 0.1678 124.156);
  --theme-primary-content: oklch(0.98 0.01 250);

  --theme-secondary: oklch(0.64 0.16 180);
  --theme-secondary-content: oklch(0.98 0.01 180);

  --theme-accent: oklch(0.72 0.18 85);
  --theme-accent-content: oklch(0.20 0.02 85);

  --theme-neutral: oklch(0.28 0.03 255);
  --theme-neutral-content: oklch(0.95 0.01 255);

  --theme-info: oklch(0.68 0.12 230);
  --theme-success: oklch(0.70 0.15 150);
  --theme-warning: oklch(0.80 0.14 95);
  --theme-error: oklch(64.274% 0.21749 23.987);
  --theme-error-content: oklch(100% 0.00011 271.152);

  --color-success-content: oklch(100% 0.00011 271.152);

  /* Surface palette */
  --theme-base-100: oklch(0.99 0.01 250);
  --theme-base-200: oklch(0.96 0.01 250);
  --theme-base-300: oklch(0.92 0.01 250);
  --theme-base-content: oklch(0.28 0.02 255);

  /* DaisyUI color tokens */
  --color-primary: var(--theme-primary);
  --color-primary-content: var(--theme-primary-content);
  --color-secondary: var(--theme-secondary);
  --color-secondary-content: var(--theme-secondary-content);
  --color-accent: var(--theme-accent);
  --color-accent-content: var(--theme-accent-content);
  --color-neutral: var(--theme-neutral);
  --color-neutral-content: var(--theme-neutral-content);
  --color-info: var(--theme-info);
  --color-success: var(--theme-success);
  --color-warning: var(--theme-warning);
  --color-error: var(--theme-error);
  --color-error-content: var(--theme-error-content);
  --color-base-100: var(--theme-base-100);
  --color-base-200: var(--theme-base-200);
  --color-base-300: var(--theme-base-300);
  --color-base-content: var(--theme-base-content);

  /* Optional radius settings */
  --radius-box: 0.75rem;
  --radius-field: 0.5rem;
  --radius-selector: 0.5rem;
}


.muted {
  color: color-mix(in oklab, currentColor 55%, transparent);
  font-size: .875rem;
}