-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/src/plugins/vuetify.ts b/src/plugins/vuetify.ts
index ed73dd5..20f0542 100644
--- a/src/plugins/vuetify.ts
+++ b/src/plugins/vuetify.ts
@@ -4,7 +4,58 @@ import { aliases, mdi } from 'vuetify/iconsets/mdi'
import '@mdi/font/css/materialdesignicons.css'
+const light = {
+ dark: false,
+ colors: {
+ 'primary': '#9155FD',
+ 'secondary': '#8A8D93',
+ 'surface': '#F4F5FA',
+ 'background': '#F4F5FA',
+
+ 'success': '#56CA00',
+ 'info': '#16B1FF',
+ 'warning': '#FFB400',
+ 'error': '#FF4C51',
+
+ 'on-primary': '#FFFFFF',
+ 'on-success': '#FFFFFF',
+ 'on-warning': '#FFFFFF',
+ 'on-secondary': '#FFFFFF',
+ 'on-background': '#3A3541',
+ 'on-surface': '#3A3541',
+ },
+}
+
+const dark = {
+ dark: true,
+ colors: {
+ 'primary': '#9155FD',
+ 'secondary': '#8A8D93',
+ 'surface': '#212121',
+ 'background': '#121212',
+
+ 'success': '#56CA00',
+ 'info': '#16B1FF',
+ 'warning': '#FFB400',
+ 'error': '#FF4C51',
+
+ 'on-primary': '#FFFFFF',
+ 'on-success': '#FFFFFF',
+ 'on-warning': '#FFFFFF',
+ 'on-secondary': '#FFFFFF',
+ 'on-background': '#FFFFFF',
+ 'on-surface': '#FFFFFF',
+ },
+}
+
export default createVuetify({
+ theme: {
+ defaultTheme: 'light',
+ themes: {
+ light,
+ dark,
+ },
+ },
icons: {
defaultSet: 'mdi',
aliases,
diff --git a/src/styles/main.css b/src/styles/main.css
index ffe8c08..7ceeeec 100755
--- a/src/styles/main.css
+++ b/src/styles/main.css
@@ -11,11 +11,6 @@ body,
font-family: "LXGW WenKai Mono", sans-serif;
}
-html.dark {
- background: #121212;
- color-scheme: dark;
-}
-
#nprogress {
pointer-events: none;
}
+
+
+