summaryrefslogtreecommitdiff
path: root/electron/src/renderer/main.js
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2020-08-19 22:50:14 -0400
committerLex Neva <github.com@lexneva.name>2020-08-19 22:50:14 -0400
commitd528000863352d2905a4b91cd1213465cd76becf (patch)
treee0b6f33f7693472bbcf585f6fdb96b4cab6c7721 /electron/src/renderer/main.js
parent433b2c401c33baf8a32d5c790d24bd49086fdd05 (diff)
set inkstitch color in vuetify theme
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,