From 33f553c290e3e24a446928260d678d7a271b86a9 Mon Sep 17 00:00:00 2001 From: Jont828 Date: Mon, 18 Mar 2024 13:50:04 -0400 Subject: [PATCH] Fix ScrollButton color in dark theme --- web/src/components/ScrollButton.vue | 4 ++-- web/src/plugins/vuetify.js | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/web/src/components/ScrollButton.vue b/web/src/components/ScrollButton.vue index 5bd2ba1..b20c6bf 100644 --- a/web/src/components/ScrollButton.vue +++ b/web/src/components/ScrollButton.vue @@ -4,7 +4,7 @@ - + mdi-chevron-up diff --git a/web/src/plugins/vuetify.js b/web/src/plugins/vuetify.js index f9cc240..071c30a 100644 --- a/web/src/plugins/vuetify.js +++ b/web/src/plugins/vuetify.js @@ -12,6 +12,7 @@ export default new Vuetify({ themes: { light: { primary: colors.blue.darken2, + accent: colors.blue.darken1, background: '#f8f3f2', legend: { cluster: colors.blue.darken1, @@ -25,6 +26,8 @@ export default new Vuetify({ dark: { primary: colors.blue.lighten3, background: '#121212', + info: colors.blue.lighten2, + accent: colors.blue.lighten2, success: colors.green.lighten3, warning: colors.orange.lighten2, // OG orange darken 1 error: colors.red.accent1,