Vuetify 2.0 gives a relatively easy option to switch between 2 color themes in the app. Yet in the current project there is a need to add a 3rd theme (dark, light and special - 'high contrast' mode).
At first I imagined that something like:
export default new Vuetify({
theme: {
themes: {
light: {...},
dark: {...},
highContrast: {...}
}
}
})
should be possible. Yet it seems that there is no way to activate the 3rd or more themes in the default Vuetify mode. Anybody has experience with a similar scenario?
You probably know the answer yet, but still someone might search for the hint. Yes, you can define a custom theme in Vuetify, and the example is available in the documentation:
Vuetify docs