💄 Fixed default accent color

This commit is contained in:
Liyas Thomas
2019-09-04 09:44:16 +05:30
parent 077cb583b6
commit 0aec1e1607
4 changed files with 5 additions and 5 deletions

View File

@@ -158,7 +158,7 @@
// Apply theme from settings.
document.documentElement.className = this.$store.state.postwoman.settings.THEME_CLASS || '';
// Load theme color data from settings, or use default color.
let color = this.$store.state.postwoman.settings.THEME_COLOR || '#51FF0D';
let color = this.$store.state.postwoman.settings.THEME_COLOR || '#50fa7b';
let vibrant = this.$store.state.postwoman.settings.THEME_COLOR_VIBRANT;
if (vibrant == null) vibrant = true;
document.documentElement.style.setProperty('--ac-color', color);