gancio-upstream/vuetify.options.js

16 lines
225 B
JavaScript
Raw Normal View History

2020-07-25 21:41:22 +02:00
// vuetify.options.js
export default {
theme: {
dark: true,
// theme: { disable: true },
2020-07-25 21:41:22 +02:00
themes: {
dark: {
2021-03-16 19:57:44 +01:00
primary: '#FF6E40'
2020-07-25 21:41:22 +02:00
},
light: {
primary: '#FF4500'
}
}
}
2021-03-16 19:57:44 +01:00
}