How to enable dark mode with custom colors in light theme in vuetify?
问题 I am using vuetify 2.0 and I am facing an issue, in my vuetify.js file I have the following code export default new Vuetify({ theme:{ themes: { light: { primary: '#3f51b5', secondary: '#b0bec5', accent: '#8c9eff', error: '#b71c1c', } }, dark: true } }) vuetify theme https://vuetifyjs.com/en/customization/theme Here, I have set the custom color for the light theme by default but when I set the dark to true the colors I have set for light gets changed. Why this is happening, why can't I have my