Skip to content

Commit

Permalink
Make accent color configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
kdrag0n committed Feb 5, 2021
1 parent f888212 commit 8518793
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export default {
OS_NAME: process.env.VUE_APP_OS_NAME,
ACCENT_COLOR: "#007cfa",
DEVICE_NAMES: {
sailfish: "Pixel",
marlin: "Pixel XL",
Expand Down
3 changes: 2 additions & 1 deletion src/plugins/vuetify.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import Vue from "vue";
import Vuetify from "vuetify/lib/framework";
import Config from "../config";

Vue.use(Vuetify);

export default new Vuetify({
theme: {
themes: {
light: {
primary: "#007CFA",
primary: Config.ACCENT_COLOR,
},
},
},
Expand Down

0 comments on commit 8518793

Please sign in to comment.