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

:root {
  /* Colors - Light Mode */
  --color-primary: #1E40AF;
  --color-primary-hover: #1E3A8A;
  --color-accent: #B45309;
  --color-accent-hover: #92400E;
  --color-background: #F8FAFC;
  --color-backgroundAlt: #FFFFFF;
  --color-text: #0F172A;
  --color-textMuted: #475569;
  --color-textLight: #64748B;
  --color-border: #E2E8F0;
  --color-success: #059669;
  --color-error: #DC2626;
  
  /* RGB values for opacity utilities */
  --color-primary-rgb: 30 64 175;
  --color-accent-rgb: 180 83 9;
  
  /* Typography */
  --font-family: Inter, system-ui, sans-serif;
  --font-display: DM Sans, system-ui, sans-serif;
  --font-weight-heading: 600;
  --font-weight-body: 400;
  
  /* Spacing */
  --radius: 0.5rem;
  --radius-small: 0.25rem;
  --radius-large: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(30, 64, 175, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(30, 64, 175, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(30, 64, 175, 0.25);
  
  /* Button Style */
  --button-radius: 0.75rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #60A5FA;
  --color-primary-hover: #93C5FD;
  --color-accent: #FBBF24;
  --color-accent-hover: #FCD34D;
  --color-background: #0F172A;
  --color-backgroundAlt: #1E293B;
  --color-text: #F1F5F9;
  --color-textMuted: #CBD5E1;
  --color-textLight: #94A3B8;
  --color-border: #334155;
  --color-success: #34D399;
  --color-error: #F87171;
  
  /* RGB values for dark mode */
  --color-primary-rgb: 96 165 250;
  --color-accent-rgb: 251 191 36;
}
