This commit is contained in:
Gregor Schulte
2023-03-29 10:11:51 +02:00
commit c1abe6ae1e
91 changed files with 6785 additions and 0 deletions

25
src/plugins/vuetify.js Normal file
View File

@@ -0,0 +1,25 @@
import Vue from 'vue'
import Vuetify from 'vuetify/lib'
import i18n from '@/i18n'
import '@/sass/overrides.sass'
Vue.use(Vuetify)
const theme = {
primary: '#4CAF50',
secondary: '#9C27b0',
accent: '#9C27b0',
info: '#00CAE3'
}
export default new Vuetify({
lang: {
t: (key, ...params) => i18n.t(key, params)
},
theme: {
themes: {
dark: theme,
light: theme
}
}
})