How can I set a base color for all text in a Vue + Vuetify project? I attempted to change the theme's primary color in vuetify.ts:
export default new Vuetify({
theme: {
themes: {
light: {
primary: "#E53935",
},
},
},
})
Unfortunately, this only affects certain cases; v-text-input labels and text outside of Vuetify components, among others, do not reflect this value. Are there any other options besides explicitly styling it using CSS?