diff --git a/public/index.html b/public/index.html index f79b361c5..4d958e33a 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 cf8b29cf2..adf394296 100755 --- a/src/App.vue +++ b/src/App.vue @@ -40,7 +40,7 @@ export default { return { sidebarActive: false, newsActive: true, - theme: 'lara-dark-indigo' + theme: 'lara-light-indigo' } }, mounted() { diff --git a/src/main.js b/src/main.js index 2fcab29af..861754e70 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: true, codeSandbox: false, sourceType: 'options-api'}); +app.config.globalProperties.$appState = reactive({darkTheme: false, codeSandbox: false, sourceType: 'options-api'}); app.use(PrimeVue, {ripple: true}); app.use(ToastService);