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.

34 lines
554B

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