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

:root {
  /* Colors - Light Mode */
  --color-primary: #7C3AED;
  --color-primary-hover: #6D28D9;
  --color-accent: #EC4899;
  --color-accent-hover: #DB2777;
  --color-background: #FAF5FF;
  --color-backgroundAlt: #FFFFFF;
  --color-text: #1E1B4B;
  --color-textMuted: #6B21A8;
  --color-textLight: #7C3AED;
  --color-border: #E9D5FF;
  --color-success: #10B981;
  --color-error: #EF4444;
  
  /* RGB values for opacity utilities */
  --color-primary-rgb: 124 58 237;
  --color-accent-rgb: 236 72 153;
  
  /* Typography */
  --font-family: Inter, system-ui, sans-serif;
  --font-display: Poppins, system-ui, sans-serif;
  --font-weight-heading: 800;
  --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(124, 58, 237, 0.25);
  --shadow-button: 0 10px 30px -10px rgba(124, 58, 237, 0.5);
  --shadow-hover: 0 20px 50px -15px rgba(124, 58, 237, 0.35);
  
  /* Button Style */
  --button-radius: 0.5rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #A78BFA;
  --color-primary-hover: #C4B5FD;
  --color-accent: #F472B6;
  --color-accent-hover: #F9A8D4;
  --color-background: #0F0720;
  --color-backgroundAlt: #1A0F2E;
  --color-text: #F5F3FF;
  --color-textMuted: #C4B5FD;
  --color-textLight: #A78BFA;
  --color-border: #3B0764;
  --color-success: #34D399;
  --color-error: #F87171;
  
  /* RGB values for dark mode */
  --color-primary-rgb: 167 139 250;
  --color-accent-rgb: 244 114 182;
}
