/* ============================================
   Theme: Finlytics
   
   Customize colors, typography, and spacing below.
   Changes here affect all pages automatically.
   ============================================ */

:root {
  /* Colors - Light Mode */
  --color-primary: #0f766e;
  --color-primary-hover: #115e59;
  --color-accent: #92400e;
  --color-accent-hover: #78350f;
  --color-background: #f8fafc;
  --color-backgroundAlt: #ffffff;
  --color-text: #0f172a;
  --color-textMuted: #64748b;
  --color-textLight: #64748b;
  --color-border: #e2e8f0;
  --color-success: #059669;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 15 118 110;
  --color-accent-rgb: 146 64 14;

  /* Typography */
  --font-family: DM Sans, system-ui, sans-serif;
  --font-display: DM Sans, system-ui, sans-serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;

  /* Spacing */
  --radius: 0.75rem;
  --radius-small: 0.375rem;
  --radius-large: 1.25rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(13, 148, 136, 0.12);
  --shadow-button: 0 10px 30px -10px rgba(13, 148, 136, 0.35);
  --shadow-hover: 0 20px 50px -15px rgba(13, 148, 136, 0.2);

  /* Button Style */
  --button-radius: 0.5rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #2dd4bf;
  --color-primary-hover: #14b8a6;
  --color-accent: #fbbf24;
  --color-accent-hover: #f59e0b;
  --color-background: #0f172a;
  --color-backgroundAlt: #1e293b;
  --color-text: #f1f5f9;
  --color-textMuted: #94a3b8;
  --color-textLight: #94a3b8;
  --color-border: #334155;
  --color-success: #34d399;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 45 212 191;
  --color-accent-rgb: 251 191 36;
}
