Change vuetify theme on laravel

Looking at your code, i suppose that you have to change it in the “../plugins/vuetify.js”.

If you have a plugins folder, it shall mean that you’re using vuetify-loader.

Your file should look somehow like this

    import Vue from 'vue'
    import Vuetify from 'vuetify/lib'
    
    Vue.use(Vuetify)
    
    export default new Vuetify({
      theme: {
        themes: {
          light: {
            primary: '#3f51b5',
            secondary: '#b0bec5',
            accent: '#8c9eff',
            error: '#b71c1c'
          }
        }
      }
    })

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top