I want to use the variables defined in my vuetify theme in the style portion of my vue files. Its not mentioned on the docs and can't seem to find an answer anywahere, does anyone know how to do this?
e.g.
Vue.use(Vuetify, {
theme: {
primary: '#3f51b5',
}
})
now in my Home component I want to do:
<template>
<h1>My Title</h1>
</template>
<styles>
h1{
color:$primary; #from the vuetify theme
}
</styles>
The answers on the other question are more work arounds than official solutions,
One of the answers quotes official statement about this issue. And reply on that answer is by one of the Vuetify devs. So it doesn't negate the fact that this is a duplicate question (at least I don't see any difference?). I.e. afaics the official "solution" is a "workaround", lol.