You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
468B

  1. import Vue from 'vue'
  2. // @ts-ignore
  3. import Vuetify from 'vuetify/lib/framework'
  4. import de from 'vuetify/src/locale/de'
  5. import '@/sass/overrides.sass'
  6. Vue.use(Vuetify)
  7. const theme = {
  8. primary: '#FF041D',
  9. secondary: '#9C27b0',
  10. accent: '#9C27b0',
  11. info: '#00CAE3'
  12. }
  13. export default new Vuetify({
  14. lang: {
  15. locales: { de },
  16. current: 'de'
  17. },
  18. icons: {
  19. iconfont: 'fa'
  20. },
  21. theme: {
  22. themes: {
  23. dark: theme,
  24. light: theme
  25. }
  26. }
  27. })