summaryrefslogtreecommitdiff
path: root/electron/src/renderer/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'electron/src/renderer/main.js')
-rw-r--r--electron/src/renderer/main.js14
1 files changed, 13 insertions, 1 deletions
diff --git a/electron/src/renderer/main.js b/electron/src/renderer/main.js
index 95d9dbf1..25a3f7f1 100644
--- a/electron/src/renderer/main.js
+++ b/electron/src/renderer/main.js
@@ -81,7 +81,19 @@ Vue.http = Vue.prototype.$http = axios
Vue.config.productionTip = false
Vue.use(Vuetify)
-let vuetify = new Vuetify({})
+const vuetify = new Vuetify({
+ theme: {
+ themes: {
+ light: {
+ primary: '#003399',
+ secondary: '#000000',
+ accent: '#8c9eff',
+ error: '#b71c1c',
+ },
+ },
+ },
+})
+
/* eslint-disable no-new */
new Vue({
vuetify,