In Vuetify, I used a toolbar component and set its color to primary
, so it is supposed to show up in blue, but I see it white:
<v-toolbar dark color="primary">
<v-btn icon>
<v-icon>more_vert</v-icon>
</v-btn>
</v-toolbar>
Only when I use <v-toolbar dark>
then I see the toolbar becomes black (as expected), when using <v-toolbar blue>
(or any other color) it becomes white.
What may be wrong with my settings? I am using the default Vuetify theme (Vue.use(Vuetify)
).