import AppShell from './components/app-shell/app-shell.js'; const { createApp } = Vue; const app = createApp(AppShell); app.use(Quasar, { config: { brand: { primary: '#5a67d8', // Indigo 600 secondary: '#475569', // Slate 600 accent: '#7c3aed', // Violet 600 dark: '#0f172a', // Slate 900 positive: '#059669', // Emerald 600 negative: '#e11d48', // Rose 600 info: '#0284c7', // Sky 600 warning: '#d97706' // Amber 600 } } }); document.documentElement.classList.add('app-shell-html'); document.body.classList.add('app-shell-body'); app.mount('#q-app');