Spaces:
Running
Running
File size: 1,285 Bytes
7e66729 a95192f 7e66729 2cb2b62 a95192f 4ce5638 b1fbbc5 a95192f 4ce5638 b1fbbc5 a95192f 4ce5638 2cb2b62 a95192f 7e66729 a95192f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
import "vuetify/styles";
import "@mdi/font/css/materialdesignicons.css";
import { createVuetify } from "vuetify";
import * as components from "vuetify/components";
import * as directives from "vuetify/directives";
const vuetify = createVuetify({
components,
directives,
theme: {
defaultTheme: "vsLight",
themes: {
vsLight: {
dark: false,
colors: {
background: "#fafafa",
surface: "#ffffff",
primary: "#667eea",
secondary: "#b8860b",
accent: "#764ba2",
error: "#e53e3e",
warning: "#d69e2e",
info: "#667eea",
success: "#38a169",
},
},
vsDark: {
dark: true,
colors: {
background: "#121212",
surface: "rgba(30, 41, 82, 0.4)",
primary: "#667eea",
secondary: "#d4af37",
accent: "#764ba2",
error: "#f5576c",
warning: "#d4af37",
info: "#667eea",
success: "#11bc9d",
},
},
},
},
icons: { defaultSet: "mdi" },
});
createApp(App).use(vuetify).use(router).mount("#root");
|