From 50c19f761dd8bfc11c6bbabacf3e866ddbc3fcee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Fri, 18 Feb 2022 11:27:39 +0300 Subject: [PATCH] Revert "dark to light" This reverts commit ff2e2e62500a7d92a7903d8276ec6414ae86d351. --- public/index.html | 2 +- src/App.vue | 2 +- src/main.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/public/index.html b/public/index.html index 4d958e33a..f79b361c5 100644 --- a/public/index.html +++ b/public/index.html @@ -13,7 +13,7 @@ PrimeVUE - + diff --git a/src/App.vue b/src/App.vue index adf394296..cf8b29cf2 100755 --- a/src/App.vue +++ b/src/App.vue @@ -40,7 +40,7 @@ export default { return { sidebarActive: false, newsActive: true, - theme: 'lara-light-indigo' + theme: 'lara-dark-indigo' } }, mounted() { diff --git a/src/main.js b/src/main.js index 861754e70..2fcab29af 100644 --- a/src/main.js +++ b/src/main.js @@ -118,7 +118,7 @@ router.beforeEach(function (to, from, next) { const app = createApp(App); -app.config.globalProperties.$appState = reactive({darkTheme: false, codeSandbox: false, sourceType: 'options-api'}); +app.config.globalProperties.$appState = reactive({darkTheme: true, codeSandbox: false, sourceType: 'options-api'}); app.use(PrimeVue, {ripple: true}); app.use(ToastService);