From 69ab7c15769b044508d1a2131dd6066f495d673c Mon Sep 17 00:00:00 2001 From: Cagatay Civici Date: Thu, 24 Feb 2022 01:20:45 +0300 Subject: [PATCH] Toggle between blue not indigo --- src/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Home.vue b/src/Home.vue index b394757ad..505e1abf6 100755 --- a/src/Home.vue +++ b/src/Home.vue @@ -54,7 +54,7 @@ export default { }, methods: { onThemeToggle() { - const newTheme = this.$appState.darkTheme ? 'lara-light-indigo' : 'lara-dark-indigo'; + const newTheme = this.$appState.darkTheme ? 'lara-light-blue' : 'lara-dark-blue'; const newTableTheme = this.$appState.darkTheme ? this.tableTheme.replace('dark', 'light') : this.tableTheme.replace('light', 'dark'); EventBus.emit('theme-change', { theme: newTheme, dark: !this.$appState.darkTheme });