From d528000863352d2905a4b91cd1213465cd76becf Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Wed, 19 Aug 2020 22:50:14 -0400 Subject: set inkstitch color in vuetify theme --- electron/src/renderer/components/InstallPalettes.vue | 12 ++++++------ electron/src/renderer/main.js | 14 +++++++++++++- 2 files changed, 19 insertions(+), 7 deletions(-) (limited to 'electron/src') diff --git a/electron/src/renderer/components/InstallPalettes.vue b/electron/src/renderer/components/InstallPalettes.vue index 728088b8..3a3c7c7c 100644 --- a/electron/src/renderer/components/InstallPalettes.vue +++ b/electron/src/renderer/components/InstallPalettes.vue @@ -11,14 +11,14 @@ Ink/Stitch can install palettes for Inkscape matching the thread colors from popular machine embroidery thread manufacturers. - - + mdi-palette Install - + Cancel @@ -36,7 +36,7 @@ - + Done @@ -54,10 +54,10 @@ {{ error }} - + Try again - + Cancel 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, -- cgit v1.2.3