|
- import Vue from 'vue'
- // @ts-ignore
- import Vuetify from 'vuetify/lib/framework'
- import de from 'vuetify/src/locale/de'
-
- import '@/sass/overrides.sass'
-
- Vue.use(Vuetify)
-
- const theme = {
- primary: '#FF041D',
- secondary: '#9C27b0',
- accent: '#9C27b0',
- info: '#00CAE3'
- }
-
- export default new Vuetify({
- lang: {
- locales: { de },
- current: 'de'
- },
- icons: {
- iconfont: 'fa'
- },
- theme: {
- themes: {
- dark: theme,
- light: theme
- }
- }
- })
|