nuxt icon indicating copy to clipboard operation
nuxt copied to clipboard

How can I use themes generated with the theme creator?

Open froeder opened this issue 6 years ago • 2 comments

Hi guys,

How can I use themes generated with the theme creator? The method below is not working.

vuetify: { theme: { primary: '#00E676', secondary: '#00C853', accent: '#7C4DFF', error: '#f44336', warning: '#ffeb3b', info: '#2196f3', success: '#4caf50' } },

I pasted the above code into nuxt.config.js below the import of the vutifyjs module. Any idea?

froeder avatar Apr 14 '18 15:04 froeder

In plugins/vuetify.js, change Vue.use call to

Vue.use(Vuetity, {
 theme: { your theme object },
 ...any other potential options
}

nekosaur avatar Apr 16 '18 10:04 nekosaur

By me this is not working...

everttrollip avatar Apr 04 '19 10:04 everttrollip