Theme Color ?
kaboume opened this issue · 3 comments
kaboume commented
Hi,
Do you know how to change the colors theme ?
Thanks
kaboume commented
I tried but it didn't worked
const vuetify = createVuetify({
components,
directives,
theme: {
defaultTheme: 'myCustomTheme',
themes: {
myCustomTheme: {
primary: '#b53f3f',
secondary: '#b0bec5',
accent: '#8c9eff',
error: '#b71c1c',
},
},
},
})
CodyBontecou commented
Hey Kaboume, you need to export default createVuetify({...})
rather than define it in a variable.
kaboume commented
Thank you !