Toggle between blue not indigo

pull/2207/head
Cagatay Civici 2022-02-24 01:20:45 +03:00
parent 50568cabe6
commit 69ab7c1576
1 changed files with 1 additions and 1 deletions

View File

@ -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 });