Hi, I'm using Nuxt with Vuetify ... everything is ok, but colors is not functional:
my code:
import Vue from 'vue'
import Vuetify from 'vuetify'
import colors from 'vuetify/es5/util/colors'
Vue.use(Vuetify,{
theme: {
primary: colors.red.darken1, // colors.amber.darken3
secondary: colors.amber.darken1,
accent: colors.amber.darken4,
info: '#0D47A1',
warning: '#ffb300',
error: '#B71C1C',
success: '#2E7D32'
}
})
<v-toolbar color="primary">
...
</v-toolbar>
Toolbar is still white ... primary class not exists...


@KaelWD Oh... :flushed: sorry. thank you...
Most helpful comment